| OLD | NEW |
| 1 {% extends "templates/default" %} | 1 {% extends "templates/default" %} |
| 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") }} |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 <a href="{{ article["page"] }}"> | 48 <a href="{{ article["page"] }}"> |
| 49 {{ article.title | translate( get_page_name( article["page"]) + "-ti
tle", "Article title") }} | 49 {{ article.title | translate( get_page_name( article["page"]) + "-ti
tle", "Article title") }} |
| 50 </a> | 50 </a> |
| 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 </main> |
| 58 | 59 |
| 59 </main> | |
| 60 {% endblock %} | 60 {% endblock %} |
| OLD | NEW |