| OLD | NEW |
| 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 <main id="main" class="container"> | 7 <main id="main" class="container"> |
| 7 <header class="product-heading"> | 8 <header class="product-heading"> |
| 8 <h1 class="has-pre-icon"> | 9 <h1 class="has-pre-icon"> |
| 9 <span class="pre-icon" style="{{ get_inline_bg('logo-'+product_id) }}"></s
pan> | 10 <span class="pre-icon" style="{{ get_inline_bg('logo-'+product_id) }}"></s
pan> |
| 10 {{ product.full_name + " Help Center" | translate(product_id+"-help-home-t
itle", "Page title") }} | 11 {{ product.full_name + " Help Center" | translate(product_id+"-help-home-t
itle", "Page title") }} |
| 11 </h1> | 12 </h1> |
| 12 </header> | 13 </header> |
| 13 | 14 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 {% endif %} | 55 {% endif %} |
| 55 {% endfor %} | 56 {% endfor %} |
| 56 </div> | 57 </div> |
| 57 | 58 |
| 58 </main> | 59 </main> |
| 59 {% endblock %} | 60 {% endblock %} |
| 60 | 61 |
| 61 {% block footer %} | 62 {% block footer %} |
| 62 <? include contact ?> | 63 <? include contact ?> |
| 63 {% endblock %} | 64 {% endblock %} |
| OLD | NEW |