emojos/templates/base.html

26 lines
757 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="{{ url_for('static', filename='site.css') }}">
<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>
2021-02-11 21:05:27 -08:00
emojos.in by iliana
2018-04-03 18:31:14 -07:00
&middot;
AGPLv3
&middot;
<a href="{{ url_for('code') }}">source code download</a>
&middot;
2021-02-11 21:05:27 -08:00
<a href="https://github.com/iliana/emojos.in">github</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>