mirror of
https://github.com/torproject/community.git
synced 2024-11-23 18:00:02 +00:00
25 lines
817 B
HTML
25 lines
817 B
HTML
<div class="container pt-5 justify-content-center">
|
|
<section>
|
|
<div class="container py-3 preamble">
|
|
<p>{% block body %}{{ this.body }}{% endblock %}
|
|
</div>
|
|
</section>
|
|
<section>
|
|
<div class="container">
|
|
<div class="row">
|
|
{% for child in this.children|sort(attribute='key') %}
|
|
<div class="col-sm-6 col-md-4 col-sm-12 col-xl-4 py-4">
|
|
<div class="card h-100 border-0 p-2">
|
|
<div class="card-body">
|
|
<h4 class="card-title ">{{ child.title }}</h4>
|
|
<p class="card-text">{{ child.subtitle }}</p>
|
|
</div>
|
|
<a href="{{ child.path|url }}" class="btn btn-primary my-3 mx-5">{{ _('Start now') }}</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|