rophako/rophako/www/layout.html

52 lines
1.5 KiB
HTML
Raw Normal View History

2014-02-19 06:30:21 +00:00
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
2014-04-10 04:58:21 +00:00
<link rel="stylesheet" type="text/css" href="/smoke/style.css">
2014-02-19 06:30:21 +00:00
</head>
<body>
<header>
2014-04-10 04:58:21 +00:00
<a href="/">
<img src="/smoke/firemarble.png" width="161" height="169" alt="Logo">
</a>
<span>Rophako</span>
2014-02-19 06:30:21 +00:00
</header>
<nav>
<ul>
<li class="header">:: Navigation</li>
<li><a href="/">Home</a></li>
2014-04-10 04:58:21 +00:00
<li><a href="/photos/albums">Photo Albums</a></li>
<li><a href="https://github.com/kirsle/rophako" target="_blank">View on Github</a></li>
<li><a href="https://github.com/kirsle/rophako/archive/master.zip">Download</a></li>
<li class="header">:: Site Admin</li>
{% if session["login"] %}
<li><a href="{{ url_for('account.logout') }}">Log out</a></li>
{% else %}
<li><a href="{{ url_for('account.login') }}">Log in</a></li>
{% endif %}
2014-02-19 06:30:21 +00:00
</ul>
</nav>
<div id="content">
{% block content %}{% endblock %}
2014-04-10 04:58:21 +00:00
<footer>
<div>
&copy; 2014 Noah Petherbridge. Web design released along with the Rophako CMS
under the GNU General Public License v2.0.<br>
<a href="https://github.com/kirsle/rophako" target="_blank">
{{ app["name"] }} v{{ app["version"] }}
</a>
</div>
</footer>
</div>
2014-02-19 06:30:21 +00:00
<script type="text/javascript" src="/js/jquery-2.1.0.min.js"></script>
{% block scripts %}{% endblock %}
2014-02-19 06:30:21 +00:00
</body>
</html>