mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 18:56:23 +00:00
33 lines
897 B
HTML
33 lines
897 B
HTML
{% load static %}
|
|
{% load i18n %}<!DOCTYPE HTML>
|
|
{% include 'header.html' %}
|
|
{% block header %}{% endblock header %}
|
|
<title>{{ site_name }} :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
|
|
|
{% spaceless %}
|
|
<div id="page">
|
|
<div id="header">
|
|
{% include 'navbar.html' %}
|
|
</div>
|
|
|
|
{% autoescape off %}{% endautoescape %}
|
|
|
|
<div class="container">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}" role="alert">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
|
|
{% block footer %}{% include 'footer.html' %}{% endblock footer %}
|
|
</div>
|
|
{% endspaceless %}
|
|
|
|
<script src="{% static '/js/bootstrap.min.js' %}"></script>
|
|
<script src="{% static '/js/ivatar.js' %}"></script>
|