blob: 93da503dbb0f5ce84676f3d9df14d89da2be6940 [file] [log] [blame]
Afshan8546b712020-06-17 16:16:59 +05301{% extends "templates/web.html" %}
2
3{% block content %}
4<section class="section section-padding-top section-padding-bottom">
5 <div class='container'>
6 <div class="hero-content">
Afshanea78b242020-06-18 09:49:35 +05307 <h1 class="hero-title">{{ greeting_title or _("We're here to help!") }}</h1>
8 {% if greeting_subtitle %}
9 <p class="hero-subtitle">{{ greeting_subtitle }}</p>
10 {% endif %}
Afshan8546b712020-06-17 16:16:59 +053011 </div>
12 </div>
13</section>
14
15{% if favorite_article_list %}
Shivam Mishra7057a802020-06-17 18:35:38 +053016<section class="section section-padding-top section-padding-bottom bg-light">
Afshan8546b712020-06-17 16:16:59 +053017 <div class='container'>
Shivam Mishra2462f072020-06-17 18:39:49 +053018 <h2>{{ _("Frequently Read Articles") }}</h2>
Afshan8546b712020-06-17 16:16:59 +053019 <div class="row">
20 {% for favorite_article in favorite_article_list %}
Afshanea78b242020-06-18 09:49:35 +053021 <div class="mt-4 col-12 col-sm-6 col-lg-4">
22 <div class="card card-md h-100 kb-card">
23 <div class="card-body">
24 <h6 class="card-subtitle mb-2 text-uppercase small text-muted">
25 {{ favorite_article['category'] }}</h6>
26 <h3 class="card-title">{{ favorite_article['title'] }}</h3>
27 <p class="card-text">{{ favorite_article['description'] }}</p>
Afshan8546b712020-06-17 16:16:59 +053028 </div>
Afshanea78b242020-06-18 09:49:35 +053029 <a href="{{ favorite_article['route'] }}" class="stretched-link"></a>
Afshan8546b712020-06-17 16:16:59 +053030 </div>
Afshanea78b242020-06-18 09:49:35 +053031 </div>
Afshan8546b712020-06-17 16:16:59 +053032 {% endfor %}
33 </div>
34 </div>
35</section>
36{% endif %}
37
38{% if help_article_list %}
Shivam Mishra7057a802020-06-17 18:35:38 +053039<section class="section section-padding-top section-padding-bottom">
Afshan8546b712020-06-17 16:16:59 +053040 <div class='container'>
Shivam Mishra2462f072020-06-17 18:39:49 +053041 <h2>{{ _("Help Articles") }}</h2>
Afshan8546b712020-06-17 16:16:59 +053042 <div class="row">
43 {% for item in help_article_list %}
44 <div class="mt-5 col-12 col-sm-6 col-lg-4">
45 <h5>{{ item['category'].name }}</h5>
46 <div>
47 {% for article in item['articles'] %}
48 <a href="{{ article.route }}" class="mt-2 d-block">{{ article.title }}</a>
49 {% endfor %}
50 </div>
51 </div>
52 {% endfor %}
53 </div>
54 </div>
55</section>
56{% endif %}
57
Shivam Mishra53346212020-06-25 11:12:09 +053058{% endblock %}