pasteque/paste/templates/base.html

20 lines
595 B
HTML

{% load i18n compress static %}
<!doctype html>
<html lang="en">
<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 %}
{% block extrastyle %}{% endblock %}
<title>{% block title %}{{ DISPLAY_NAME }}{% endblock %}</title>
</head>
<body>
<div>
{% block content %}{% endblock %}
</div>
</body>
</html>