emojos/templates/base.html

24 lines
653 B
HTML
Raw Normal View History

2018-04-01 20:23:21 -07:00
<!doctype html>
<html>
<head>
<title>{% block title %}{% endblock title %}</title>
<link rel="stylesheet" href="/static/site.css">
2018-04-01 20:23:21 -07:00
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
{% block body %}
{% endblock body %}
2018-04-03 18:31:14 -07:00
<footer>
<p>
2024-07-22 18:31:18 -07:00
emojos.in by iliana &amp; kay
2018-04-03 18:31:14 -07:00
&middot;
AGPLv3
&middot;
2024-07-22 18:31:18 -07:00
<a href="https://lab.freak.university/FreakU/emojos">source code</a>
2018-04-03 18:31:14 -07:00
</p>
</footer>
{% block script %}
{% endblock script %}
2018-04-01 20:23:21 -07:00
</body>
</html>