Left: | ||
Right: |
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 | 4 |
5 {% block body %} | 5 {% block body %} |
6 <nav aria-label="{{ "Breadcrumb" | translate("breadcrumb-label", "Label") }}" cl ass="breadcrumb"> | 6 <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"> | 7 <ol class="container large-desktop-width clearfix" itemscope itemtype="http:// schema.org/BreadcrumbList"> |
8 <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListIte m"> | 8 <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 }}"> | 9 <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> | 10 <span class="pre-icon" style="{{ get_inline_bg('logo-'+product_id) }}">< /span> |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 </div> | 45 </div> |
46 <aside class="section column one-third"> | 46 <aside class="section column one-third"> |
47 <? include product-topics-accordion ?> | 47 <? include product-topics-accordion ?> |
48 </aside> | 48 </aside> |
49 </div> | 49 </div> |
50 </main> | 50 </main> |
51 | 51 |
52 <script id="no-content-for-platform-message" type="text/template"> | 52 <script id="no-content-for-platform-message" type="text/template"> |
53 <p>{{ "Unfortunately, there is no content specific for your current browser. P lease use the dropdown menu above to choose a different browser." | translate("n o-content-for-platform-message", "paragraph") }}</p> | 53 <p>{{ "Unfortunately, there is no content specific for your current browser. P lease use the dropdown menu above to choose a different browser." | translate("n o-content-for-platform-message", "paragraph") }}</p> |
54 </script> | 54 </script> |
55 | |
56 <script src="/js/vendor/bowser.js"></script> | |
juliandoucette
2017/11/02 13:10:56
suggest: We could add scripts like these to a scri
ire
2017/11/02 14:31:14
Good idea. Done.
I think it might also be a good
| |
55 {% endblock %} | 57 {% endblock %} |
56 | 58 |
57 {% block footer %} | 59 {% block footer %} |
58 <? include contact ?> | 60 <? include contact ?> |
59 {% endblock %} | 61 {% endblock %} |
OLD | NEW |