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 @@ ...@@ -13,14 +13,25 @@
{% endblock %} {% endblock %}
{% block main %} {% block main %}
<section class="container section is-medium project-section-{{ section.extra.project_slug }}"> <section class="hero hero-main">
<h1 class="title">{{ section.title }}</h1> <div class="hero-body">
<h2 class="subtitle">{{ section.description }}</h2> <div class="container">
<ul class="box"> <div class="columns">
{% for thesis in section.extra.theses %} <div class="column is-two-fifth project-title">
<li>{{ thesis }}</li> <h1>{{ section.title }}</h1>
{% endfor %} <p>
</ul> {{ section.description }}
<div class="content">{{ section.content | safe }}</div> </p>
</div>
<div class="column project-theses">
<ul>
{% for thesis in section.extra.theses %}
<li>{{ thesis }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</section> </section>
{% endblock %} {% 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