Skip to content
Snippets Groups Projects
Verified Commit b1128945 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[WIP] Improve project template

parent 6c6b1c7e
No related branches found
No related tags found
1 merge request!28Neue Website basierend auf Zola
......@@ -13,14 +13,25 @@
{% endblock %}
{% block main %}
<section class="container section is-medium project-section-{{ section.extra.project_slug }}">
<h1 class="title">{{ section.title }}</h1>
<h2 class="subtitle">{{ section.description }}</h2>
<ul class="box">
{% for thesis in section.extra.theses %}
<li>{{ thesis }}</li>
{% endfor %}
</ul>
<div class="content">{{ section.content | safe }}</div>
<section class="hero hero-main">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-two-fifth project-title">
<h1>{{ section.title }}</h1>
<p>
{{ section.description }}
</p>
</div>
<div class="column project-theses">
<ul>
{% for thesis in section.extra.theses %}
<li>{{ thesis }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</section>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment