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

17 lines
No EOL
454 B
HTML

{% extends "base.html" %}
{% block head %}
<title>Vulcan's Blog | {{page.title}}</title>
<link rel="stylesheet" href="{{ get_url( path="css/blog.css" ) }} ">
<link rel="stylesheet" href="{{ get_url(path="css/vulcan-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 %}