mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-14 20:18:02 +00:00
20 lines
540 B
HTML
20 lines
540 B
HTML
{% load static %}
|
|
{% load i18n %}<!DOCTYPE HTML>
|
|
{% include 'header.html' %}
|
|
<title>iVatar :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
|
|
|
{% spaceless %}
|
|
<div id="page">
|
|
|
|
{% autoescape off %}{% endautoescape %}
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% block footer %}{% include 'footer.html' %}{% endblock footer %}
|
|
</div>
|
|
{% endspaceless %}
|
|
|
|
<script src="{% static '/js/bootstrap.min.js' %}"></script>
|
|
<script src="{% static '/js/ivatar.js' %}"></script>
|
|
{{ settings }}
|