django-cryptolock/example/templates/django_cryptolock/base.html

67 lines
1.8 KiB
HTML

{% load staticfiles i18n %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>{% block title %}Django-Cryptolock{% endblock title %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
{% block css %} {% endblock %}
</head>
<body>
<div class="m-b">
<nav>
<div>
<div>
<ul>
<li>
<a href="/">Home</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div>
{% if messages %} {% for message in messages %}
<div
class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}"
>
{{ message }}
</div>
{% endfor %} {% endif %}
<!-- Page content -->
{% block content %}
<div>
<p>Use this document as a way to quick start any new project.</p>
<p>
The current template is loaded from
<code>django-cryptolock/example/templates/base.html</code>.
</p>
<p>
Whenever you overwrite the contents of
<code>django-cryptolock/django_cryptolock/urls.py</code> with your own
content, you should see it here.
</p>
</div>
{% endblock content %}
</div>
{% block modal %}{% endblock modal %}
<!-- Javascript ======================= -->
<!-- Placed at the end of the document so the pages load faster -->
{% block javascript %} {% endblock javascript %}
</body>
</html>