| OLD | NEW |
| 1 {% extends "templates/default" %} | 1 {% extends "templates/minimal" %} |
| 2 | 2 |
| 3 {% set product = products[product_id] %} | 3 {% set product = products[product_id] %} |
| 4 | 4 |
| 5 {% block body %} | 5 {% block body %} |
| 6 <main id="main" class="container"> | 6 <main id="main" class="container"> |
| 7 <h1 class="product-heading"> | 7 <h1 class="product-heading"> |
| 8 <img class="heading-icon" src="/img/png/logo-{{ product_id }}.png" srcset="/
img/svg/logo-{{ product_id }}.svg 2x" alt="{{ product.full_name+" Logo" | transl
ate( product_id+"-logo-alt", "Image alt text") }}"> | 8 <img class="heading-icon" src="/img/png/logo-{{ product_id }}.png" srcset="/
img/svg/logo-{{ product_id }}.svg 2x" alt="{{ product.full_name+" Logo" | transl
ate( product_id+"-logo-alt", "Image alt text") }}"> |
| 9 | 9 |
| 10 {{ product.full_name + " Help Center" | translate(product_id+"-help-home-tit
le", "Page title") }} | 10 {{ product.full_name + " Help Center" | translate(product_id+"-help-home-tit
le", "Page title") }} |
| 11 </h1> | 11 </h1> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 </li> | 51 </li> |
| 52 {% endfor %} | 52 {% endfor %} |
| 53 </ul> | 53 </ul> |
| 54 </section> | 54 </section> |
| 55 {% endif %} | 55 {% endif %} |
| 56 {% endfor %} | 56 {% endfor %} |
| 57 </div> | 57 </div> |
| 58 | 58 |
| 59 </main> | 59 </main> |
| 60 {% endblock %} | 60 {% endblock %} |
| 61 |
| 62 {% block footer %} |
| 63 <? include contact ?> |
| 64 {% endblock %} |
| OLD | NEW |