Blame view

flaskr/templates/index.html 708 Bytes
db954042   Goutte   Add the main temp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "base.html" %}

{% block title %}Home{% endblock %}

{% block body %}
    <div class="jumbotron">
        <h1>{{ content.hero.title }}</h1>
        <p>{{ content.hero.description }}</p>
    </div>

    <div class="row">
        <div class="col-lg-12">
            <h1>What's Included</h1>
        </div>
    </div>

    {% for section in content.home.sections -%}
    <div class="row">
        {% for block in section.blocks -%}
        <div class="col-md-4">
            {% if block.title -%}
            <h3>{{ block.title }}</h3>
            {%- endif %}
            <p>{{ block.content | markdown | safe }}</p>
        </div>
        {%- endfor %}
    </div>
    {%- endfor %}

{% endblock %}