39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block description %}
|
|
{% match description %}
|
|
{% when Some with (description_content) %}
|
|
{{ description_content }}
|
|
{% when None %}
|
|
A page on eviee.gay
|
|
{% endmatch %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if draft == true -%}
|
|
<blockquote>
|
|
⚠️ This page is marked as a <b>draft</b>! It may not yet be complete!
|
|
</blockquote>
|
|
{% endif -%}
|
|
|
|
{% if show_title == true -%}
|
|
<h1>{{ title }}</h1>
|
|
{% endif -%}
|
|
|
|
{% for content_block in content_blocks %}
|
|
{% match content_block %}
|
|
{% when BlockTypes::HR %}
|
|
<hr />
|
|
{% when BlockTypes::PARAGRAPH { text } %}
|
|
<p>{{ text }}</p>
|
|
{% when BlockTypes::MARKDOWN { content } %}
|
|
{{ content|markdown }}
|
|
{% when BlockTypes::HEADER { text, size } %}
|
|
<h{{size}}>{{text}}</h{{size}}>
|
|
{% else %}
|
|
<b>UNSUPPORTED block type here!</b>
|
|
{% endmatch %}
|
|
{% endfor %}
|
|
{% endblock %}
|