pasteque/paste/templates/base.html

20 lines
595 B
HTML
Raw Normal View History

{% load i18n compress static %}
<!doctype html>
2013-04-04 17:37:30 +00:00
<html lang="en">
2018-05-19 09:13:34 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% compress css %}
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet">
<link href="{% static 'css/pygments-highlight.css' %}" rel="stylesheet">
2018-05-19 09:13:34 +00:00
{% endcompress %}
2023-04-21 08:12:46 +00:00
{% block extrastyle %}{% endblock %}
2023-04-21 12:32:45 +00:00
<title>{% block title %}{{ DISPLAY_NAME }}{% endblock %}</title>
2018-05-19 09:13:34 +00:00
</head>
<body>
2023-04-21 08:12:46 +00:00
<div>
2018-05-19 09:13:34 +00:00
{% block content %}{% endblock %}
2013-04-04 17:37:30 +00:00
</div>
2018-05-19 09:13:34 +00:00
</body>
2013-04-04 17:37:30 +00:00
</html>