pasteque/paste/templates/base.html

21 lines
628 B
HTML
Raw Normal View History

2018-05-19 09:13:34 +00:00
{% load i18n %}{% load compress %}<!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">
{% endcompress %}
2023-04-21 08:12:46 +00:00
{% block extrastyle %}{% endblock %}
2018-05-19 09:13:34 +00:00
<title>{% block title %}{% endblock %} - {{ DISPLAY_NAME }}</title>
</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
{% block javascript %}{% endblock %}
</body>
2013-04-04 17:37:30 +00:00
</html>