index.html 706 Bytes
Newer Older
1 2 3 4 5
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" itemscope="itemscope" itemtype="http://schema.org/Product">
{% include 'includes/head.html' %}

<body>
6
<header class="navbar navbar-static-top navbar-top" data-role="navigation">
7 8
    <div class="container" data-ng-include="'/modules/home/views/header.html'"></div>
</header>
9
<div class="content">
10 11 12
    <div data-ng-include="'/modules/notification/views/notifications.html'"></div>
    <div data-ui-view></div>
</div>
13 14 15 16 17
<footer class="footer navbar-bottom">
    <div class="container">
        <p align="right">Powered by<img src="modules/home/img/logo-green.png"></p>
    </div>
</footer>
18 19 20 21
{% include 'includes/foot.html' %}
</body>

</html>