Files
willfullyobtuse.com/templates/base.html
James Brechtel b9e2905617
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Adds lang tag to html element
2022-11-22 08:15:48 -05:00

20 lines
361 B
HTML

{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html lang="en">
{% 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>