37 lines
899 B
HTML
37 lines
899 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block description %}
|
|
{% match summary %}
|
|
{% when Some with (summary_content) %}
|
|
{{ summary_content }}
|
|
{% when None %}
|
|
A post on eviee.gay
|
|
{% endmatch %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
{% match summary %}
|
|
{% when Some with (summary_content) %}
|
|
<h2>{{ summary_content }}</h2>
|
|
{% when None %}
|
|
{% endmatch %}
|
|
{% match last_updated %}
|
|
{% when Some with (last_updated_date) %}
|
|
<p>Published: {{ publish_date }} | Last updated: {{ last_updated_date }}</p>
|
|
{% when None %}
|
|
<p>Published: {{ publish_date }}</p>
|
|
{% endmatch %}
|
|
|
|
<br />
|
|
|
|
{% for block in blocks %}
|
|
<p>block is real</p>
|
|
{% endfor %}
|
|
|
|
<br />
|
|
|
|
<i>Comments are W.I.P</i>
|
|
{% endblock %}
|