Texts edited, projects redesigned, posts temporarily removed, pkmples project added and more
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 19s
Build Zola Website / build (pull_request) Successful in 15s

This commit is contained in:
2024-02-23 03:06:08 +01:00
parent 2e25a00637
commit 9c4bfc84ff
14 changed files with 76 additions and 108 deletions

View File

@ -5,7 +5,8 @@
{% endblock styles %}
{% block content %}
<section class="project-wrapper flex-row">
<section class="project-wrapper flex-col">
<!--
<section class="left-bar flex-col">
<h2>Projects</h2>
{% set section = get_section(path=page.ancestors | last) %}
@ -13,9 +14,13 @@
<a href="{{ project.permalink }}">{{project.title}}</a>
{% endfor %}
</section>
-->
<section class="project-full">
{{ page.content | safe }}
</section>
<h2>{{ page.title }}</h2>
<div>
{{ page.content | safe }}
</div>
<a href="/projects">Back to list of projects</a>
</section>
{% endblock content %}