first commit

This commit is contained in:
2025-03-07 10:04:42 +00:00
commit f3a71e8d12
23 changed files with 732 additions and 0 deletions

13
views/blogpost.twig Normal file
View File

@ -0,0 +1,13 @@
{% extends layout %}
{% block title %}{{ $post->getTitle() }}{% endblock %}
{% block content %}
<div id="overview">
<h1>{{ $post->getTitle() }}</h1>
<section class="post-view">
<p>{{ $post->getContent() }}</p>
</section>
<a href="/">back</a>
</div>
{% endblock %}