ccm-website/templates/eli-blog-page.html
2024-11-12 13:05:12 +02:00

18 lines
No EOL
441 B
HTML

{% extends "base.html" %}
{% block head %}
<title>Eli's Blog | {{ page.title }}</title>
<link rel="stylesheet" href="{{get_url(path="css/blog.css")}}">
<link rel="stylesheet" href="{{ get_url(path="css/eli-style.css") }}">
{%endblock head %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<p class="blog post">
{{ page.content | safe }}
</p>
{% endblock content %}