Skip to content
Snippets Groups Projects
project.html 743 B
Newer Older
magicfelix's avatar
magicfelix committed
{% extends "base.html" %}

{% block meta %}
    {% if section.description %}
        <meta name="description" content="{{ section.description }}" />
    {% elif config.description %}
        <meta name="description" content="{{ config.description }}" />
    {% endif %}
{% endblock %}

{% block title %}
    {{ section.title }}
{% 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>
{% endblock %}