Files
willfullyobtuse.com/templates/base.html
James Brechtel 8e4042a0ba
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Adding mermaid - it's really small for some reason
2022-11-13 00:41:20 -05:00

20 lines
351 B
HTML

{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html>
{% include "partials/header.html" %}
<body>
<div class="content">
{% include "partials/nav.html" %}
{# Post page is the default #}
{% block main_content %}
Nothing here?!
{% endblock main_content %}
</div>
</body>
</html>