website/templates/about.html
Filip Rojek 203b08d044
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
Build Zola Website / build (pull_request) Successful in 24s
Fixed h1 margin on about page
2025-05-24 12:05:33 +02:00

13 lines
256 B
HTML

{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/about.css">
{% endblock styles %}
{% block content %}
<section class="about content">
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
</section>
{% endblock content %}