mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 09:50:39 +00:00
15 lines
401 B
Plaintext
15 lines
401 B
Plaintext
{% extends 'layouts/base.njk' %}
|
|
{% set pageType = 'Page' %}
|
|
|
|
{% block content %}
|
|
<div class="small-left-grid">
|
|
<div id="title">
|
|
<a href="/">Self-Defined</a>
|
|
<p>A modern dictionary about us.<br>We define our words, but they don't define us.</p>
|
|
</div>
|
|
<main class="page">
|
|
<h1 class="title__thicc" >{{ title }}</h1>
|
|
{{ content | safe }}
|
|
</main>
|
|
{% endblock %}
|