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

18 lines
No EOL
445 B
HTML

{% extends "base.html" %}
{% block head %}
{% set name = page.title %}
<title>About {{name}}</title>
<link rel="stylesheet" href={{get_url(path="css/about.css")}}>
{% set css_path = get_url(path="css") ~ "/" ~ name ~ "-style.css" %}
<link rel="stylesheet" href="{{css_path}}"/>
{% endblock head %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class = "about-content">
{{ page.content | safe }}
</p>
{% endblock content %}