2019-12-31 00:39:46 +00:00
|
|
|
{% extends "layout-2020.html" %}
|
2019-12-30 20:40:48 +00:00
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
2019-12-31 00:39:46 +00:00
|
|
|
{% block subtitle %}{{ this.subtitle }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-01-03 19:54:26 +00:00
|
|
|
{% if this.description1 %}
|
2020-01-03 18:21:14 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
2020-01-03 19:54:26 +00:00
|
|
|
{{ this.description1 }}
|
2020-01-03 18:21:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-12-31 00:39:46 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-5">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<h3 class="font-weight-normal">{{ this.feature1_title }}</h3>
|
|
|
|
<p class="font-weight-normal">{{ this.feature1_text }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<h3 class="font-weight-normal">{{ this.feature2_title }}</h3>
|
|
|
|
<p class="font-weight-normal">{{ this.feature2_text }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<h3 class="font-weight-normal">{{ this.feature3_title }}</h3>
|
|
|
|
<p class="font-weight-normal">{{ this.feature3_text }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-06 11:55:16 +00:00
|
|
|
|
2020-01-03 19:54:26 +00:00
|
|
|
{% if this.description2 %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{{ this.description2 }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-12-31 00:39:46 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-7">
|
|
|
|
{{ this.content1_text }}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-5">
|
|
|
|
{% if this.content1_image %}
|
|
|
|
<img src="{{ this.content1_image }}" class="img-fluid">
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-03 22:30:05 +00:00
|
|
|
{% if this.description3 %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{{ this.description3 }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-12-31 00:39:46 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer1_title and this.offer1_text and this.offer1_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer1_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer1_text }}</p>
|
|
|
|
<a href="{{ this.offer1_link }}" class="btn btn-primary">Order</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer2_title and this.offer2_text and this.offer2_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer2_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer2_text }}</p>
|
|
|
|
<a href="{{ this.offer2_link }}" class="btn btn-primary">Order</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer3_title and this.offer3_text and this.offer3_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer3_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer3_text }}</p>
|
2020-02-06 10:29:56 +00:00
|
|
|
<a href="{{ this.offer3_link }}" class="btn btn-primary">Order</a>
|
2019-12-30 20:18:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-31 00:39:46 +00:00
|
|
|
{% endif %}
|
2019-12-30 20:18:44 +00:00
|
|
|
</div>
|
2019-12-30 20:40:48 +00:00
|
|
|
</div>
|
2019-12-31 00:39:46 +00:00
|
|
|
</div>
|
|
|
|
<hr/>
|
2020-02-03 22:30:05 +00:00
|
|
|
{% if this.description4 %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{{ this.description4 }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-12-31 00:39:46 +00:00
|
|
|
|
2019-12-30 20:40:48 +00:00
|
|
|
<div class="container">
|
2019-12-31 00:39:46 +00:00
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-7">
|
|
|
|
{{ this.content2_text }}
|
2019-12-30 20:18:44 +00:00
|
|
|
</div>
|
2019-12-31 00:39:46 +00:00
|
|
|
<div class="col-md-5">
|
|
|
|
{% if this.content2_image %}
|
|
|
|
<img src="{{ this.content2_image }}" class="img-fluid">
|
|
|
|
{% endif %}
|
2019-12-30 20:18:44 +00:00
|
|
|
</div>
|
2019-12-31 00:39:46 +00:00
|
|
|
</div>
|
2019-12-30 20:40:48 +00:00
|
|
|
</div>
|
2020-03-23 17:09:06 +00:00
|
|
|
|
2020-03-23 21:04:38 +00:00
|
|
|
{% if this.description5 %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{{ this.description5 }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2020-03-23 17:09:06 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer4_title and this.offer4_text and this.offer4_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer4_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer4_text }}</p>
|
|
|
|
<a href="{{ this.offer4_link }}" class="btn btn-primary">Order</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer5_title and this.offer5_text and this.offer5_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer5_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer5_text }}</p>
|
|
|
|
<a href="{{ this.offer5_link }}" class="btn btn-primary">Order</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
{% if this.offer6_title and this.offer6_text and this.offer6_link %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ this.offer6_title }}</h5>
|
|
|
|
<p class="card-text">{{ this.offer6_text }}</p>
|
|
|
|
<a href="{{ this.offer6_link }}" class="btn btn-primary">Order</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
|
2020-03-23 21:04:38 +00:00
|
|
|
{% if this.description6 %}
|
2020-02-03 22:30:05 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-md-12">
|
2020-03-23 21:04:38 +00:00
|
|
|
{{ this.description6 }}
|
2020-02-03 22:30:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-12-30 20:40:48 +00:00
|
|
|
{% endblock %}
|