Blame view

flaskr/templates/index.html 760 Bytes
db954042   Goutte   Add the main temp...
1
2
3
4
5
{% extends "base.html" %}

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

{% block body %}
db954042   Goutte   Add the main temp...
6

fef4a9fd   Goutte   Rework the templa...
7
8
9
10
11
12
    <div class="row pb-4">
        <div class="col-lg-4"></div>
        <div class="col-lg-4 text-center">
            <a href="{{ url_for('.estimate') }}" class="btn btn-lg btn-primary">
                Request Estimation
            </a>
db954042   Goutte   Add the main temp...
13
        </div>
fef4a9fd   Goutte   Rework the templa...
14
        <div class="col-lg-4"></div>
db954042   Goutte   Add the main temp...
15
16
17
18
19
20
21
22
23
    </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 %}
fef4a9fd   Goutte   Rework the templa...
24
            {{ block.content | markdown | safe }}
db954042   Goutte   Add the main temp...
25
26
27
28
29
30
        </div>
        {%- endfor %}
    </div>
    {%- endfor %}

{% endblock %}