24 lines
496 B
HTML
24 lines
496 B
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 show_title == true -%}
|
|
<h1>{{ title }}</h1>
|
|
{% endif -%}
|
|
|
|
{% for block in blocks %}
|
|
<p>block is real</p>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|