Files
gitea-pages/overrides/news.html
Hans-Nikolai Viessmann 8776887a1e initial testing with Zensical
This commit is a test run, currently I would stick with MM proper until
Zensical is more mature. Hopefully in about half a year.

Missing features:
- blog for news articles (using template at the moment, not ideal)
2026-01-07 15:17:22 +01:00

25 lines
680 B
HTML

{% extends "base.html" %}
{# this document is based on the offical template as given in
https://github.com/zensical/ui/blob/master/src/base.html. #}
{% block container %}
<div class="md-content" data-md-component="content">
<!-- Navigation path (breadcrumbs) -->
{% if "navigation.path" in features %}
{% include "partials/path.html" %}
{% endif %}
<!-- Page content -->
<article class="md-content__inner md-typeset">
{% if page.meta and page.meta.date %}
<div class="md-post__meta md-meta">{{ page.meta.date }}</div>
{% endif %}
{% block content %}
{% include "partials/content.html" %}
{% endblock %}
</article>
</div>
{% endblock %}