30 lines
737 B
HTML
30 lines
737 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8">
|
|
{{ this.body }}
|
|
</div>
|
|
</div>
|
|
<div class="row project-type">
|
|
{% for child in this.children %}
|
|
{% if child._id != 'attic' %}
|
|
<div class="col-md-4">
|
|
<h3><a href="{{ child|url(alt=this.alt) }}">{{ child.title }}</a></h3>
|
|
<p>{{ child.description }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if loop.index == 3 %}
|
|
</div>
|
|
<div class="row project-type">
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8">
|
|
{{ this.gutter }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|