Prepare/move main pages to 2020 layout

This commit is contained in:
Nico Schottelius 2020-01-04 14:03:03 +01:00
commit a4dc773df3
7 changed files with 79 additions and 2 deletions

13
templates/page-2020.html Normal file
View file

@ -0,0 +1,13 @@
{% extends "layout-2020.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block subtitle %}{{ this.subtitle }}{% endblock %}
{% block content %}
<div class="container">
<div class="row mb-3">
<div class="col-md-12">
{{ this.content }}
</div>
</div>
</div>
{% endblock %}

1
templates/projects.html Symbolic link
View file

@ -0,0 +1 @@
summary-page.html

View file

@ -0,0 +1,32 @@
{% extends "layout-2020.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block subtitle %}{{ this.subtitle }}{% endblock %}
{% block content %}
<div class="container">
{% for product in this.children %}
{% if loop.first %}
<div class="row mb-3">
{% endif %}
<div class="col-md-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">{{ product.title }}</h5>
<p class="card-text">{{ product.subtitle }}</p>
<a class="btn btn-primary" href="{{ product|url }}">Check it out</a>
</div>
</div>
</div>
{% if loop.index is divisibleby 3 %}
</div>
<div class="row mb-3">
{% endif %}
{% if loop.last %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endblock %}