blob: 2b1c282d18494587aa80121bd09ad5162eb355fb [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">
Shivam Mishra6e231ae2020-06-17 18:43:59 +05307 <h1 class="hero-title">{{ greeting_title or _("We're here to help") }}</h1>
Afshan8546b712020-06-17 16:16:59 +05308 <p class="hero-subtitle">{{ greeting_subtitle or _("Browse help topics.") }}</p>
9 </div>
10 </div>
11</section>
12
13{% if favorite_article_list %}
Shivam Mishra7057a802020-06-17 18:35:38 +053014<section class="section section-padding-top section-padding-bottom bg-light">
Afshan8546b712020-06-17 16:16:59 +053015 <div class='container'>
Shivam Mishra2462f072020-06-17 18:39:49 +053016 <h2>{{ _("Frequently Read Articles") }}</h2>
Afshan8546b712020-06-17 16:16:59 +053017 <div class="row">
18 {% for favorite_article in favorite_article_list %}
19 <div class="mt-4 col-12 col-sm-6 col-lg-4">
Shivam Mishra7057a802020-06-17 18:35:38 +053020 <div class="card card-md h-100 kb-card">
Afshan8546b712020-06-17 16:16:59 +053021 <div class="card-body">
22 <h6 class="card-subtitle mb-2 text-uppercase small text-muted">{{ favorite_article['category'] }}</h6>
23 <h3 class="card-title">{{ favorite_article['title'] }}</h3>
24 <p class="card-text">{{ favorite_article['description'] }}</p>
25 </div>
26 <a href="{{ favorite_article['route'] }}" class="stretched-link"></a>
27 </div>
28 </div>
29 {% endfor %}
30 </div>
31 </div>
32</section>
33{% endif %}
34
35{% if help_article_list %}
Shivam Mishra7057a802020-06-17 18:35:38 +053036<section class="section section-padding-top section-padding-bottom">
Afshan8546b712020-06-17 16:16:59 +053037 <div class='container'>
Shivam Mishra2462f072020-06-17 18:39:49 +053038 <h2>{{ _("Help Articles") }}</h2>
Afshan8546b712020-06-17 16:16:59 +053039 <div class="row">
40 {% for item in help_article_list %}
41 <div class="mt-5 col-12 col-sm-6 col-lg-4">
42 <h5>{{ item['category'].name }}</h5>
43 <div>
44 {% for article in item['articles'] %}
45 <a href="{{ article.route }}" class="mt-2 d-block">{{ article.title }}</a>
46 {% endfor %}
47 </div>
48 </div>
49 {% endfor %}
50 </div>
51 </div>
52</section>
53{% endif %}
54
55{% endblock %}