Prepare/move main pages to 2020 layout
This commit is contained in:
parent
f52bf5d297
commit
a4dc773df3
7 changed files with 79 additions and 2 deletions
13
templates/page-2020.html
Normal file
13
templates/page-2020.html
Normal 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
1
templates/projects.html
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
summary-page.html
|
||||
32
templates/summary-page.html
Normal file
32
templates/summary-page.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue