Queerscriptors.org/templates/layout.html

13 lines
262 B
HTML
Raw Normal View History

2022-08-21 11:31:33 +00:00
<!DOCTYPE html>
<html lang="en">
2021-08-18 00:13:13 +00:00
{% include 'meta.html' %}
2022-08-21 11:31:33 +00:00
<body id="page-top">
2021-09-11 13:10:27 +00:00
{% block page %}
2021-08-18 00:13:13 +00:00
{% include 'masterhead.html' %}
{% include 'about.html' %}
{% block projects %}{% endblock %}
2021-09-11 13:10:27 +00:00
{% endblock %}
2021-08-18 00:13:13 +00:00
{% include 'footer.html' %}
2022-08-21 11:31:33 +00:00
</body>
</html>