mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-04 21:33:48 -04:00
22 lines
229 B
HTML
22 lines
229 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include "head.html" %}
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'header.html' %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% include 'footer.html' %}
|
|
|
|
</body>
|
|
|
|
</html>
|