LEFT | RIGHT |
(no file at all) | |
1 {% extends "templates/minimal" %} | 1 {% extends "templates/minimal" %} |
2 | 2 |
3 {% set product = products[product_id] %} | 3 {% set product = products[product_id] %} |
| 4 {% set title_suffix = product.full_name + " Help Center" %} |
4 | 5 |
5 {% block body %} | 6 {% block body %} |
6 <nav aria-label="{{ "Breadcrumb" | translate("breadcrumb-label", "Label") }}" cl
ass="breadcrumb"> | 7 <nav aria-label="{{ "Breadcrumb" | translate("breadcrumb-label", "Label") }}" cl
ass="breadcrumb"> |
7 <ol class="container large-desktop-width clearfix" itemscope itemtype="http://
schema.org/BreadcrumbList"> | 8 <ol class="container large-desktop-width clearfix" itemscope itemtype="http://
schema.org/BreadcrumbList"> |
8 <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListIte
m"> | 9 <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListIte
m"> |
9 <a class="has-pre-icon" itemscope itemtype="http://schema.org/Thing" itemp
rop="item" href="{{ product.slug }}"> | 10 <a class="has-pre-icon" itemscope itemtype="http://schema.org/Thing" itemp
rop="item" href="{{ product.slug }}"> |
10 <span class="pre-icon" style="{{ get_inline_bg('logo-'+product_id) }}"><
/span> | 11 <span class="pre-icon" style="{{ get_inline_bg('logo-'+product_id) }}"><
/span> |
11 <span itemprop="name">{{ product.full_name | translate(product_id+"-name
", "Product name") }}</span> | 12 <span itemprop="name">{{ product.full_name | translate(product_id+"-name
", "Product name") }}</span> |
12 </a> | 13 </a> |
13 <meta itemprop="position" content="1" /> | 14 <meta itemprop="position" content="1" /> |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 </main> | 64 </main> |
64 {% endblock %} | 65 {% endblock %} |
65 | 66 |
66 {% block footer %} | 67 {% block footer %} |
67 <? include contact ?> | 68 <? include contact ?> |
68 {% endblock %} | 69 {% endblock %} |
69 | 70 |
70 {% block scripts %} | 71 {% block scripts %} |
71 <script src="/dist/js/vendor/bowser.min.js"></script> | 72 <script src="/dist/js/vendor/bowser.min.js"></script> |
72 {% endblock %} | 73 {% endblock %} |
LEFT | RIGHT |