Start Theme Repo

This commit is contained in:
2026-01-29 19:10:03 +01:00
commit 101179e994
84 changed files with 14654 additions and 0 deletions

26
views/pages/generic.twig Normal file
View File

@@ -0,0 +1,26 @@
{% extends 'base.twig' %}
{% block page %}
<article id="post-{{ post.ID }}" {{ fn('post_class') }}>
<header class="entry-header">
<h1 class="page-title">{{ post.title }}</h1>
</header>
{{ fn('the_post_thumbnail') }}
<div class="post-content">
<div class="entry-content clearfix">
{% block page_content %}
{{ post.content }}
{% endblock %}
</div>
</div>
</article>
{% endblock %}