website/templates/post.html

27 lines
618 B
HTML
Raw Normal View History

2024-10-03 02:45:34 +02:00
{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/project.css">
{% endblock styles %}
{% block content %}
<section class="project-wrapper flex-col">
<!--
<section class="left-bar flex-col">
<h2>Projects</h2>
{% set section = get_section(path=page.ancestors | last) %}
{% for project in section.pages %}
<a href="{{ project.permalink }}">{{project.title}}</a>
{% endfor %}
</section>
-->
2024-10-14 01:15:41 +02:00
<!-- <h2>{{ page.title }}</h2> -->
2024-10-03 02:45:34 +02:00
<div>
{{ page.content | safe }}
</div>
<a href="/posts">Back to list of posts</a>
</section>
{% endblock content %}