mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-25 18:58:19 +00:00
19 lines
390 B
HTML
19 lines
390 B
HTML
{% load pipeline %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
|
{% stylesheet 'css' %}
|
|
{% block css %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |