splash.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. layout: default
  3. ---
  4. {% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
  5. {% include page__hero.html %}
  6. {% elsif page.header.video.id and page.header.video.provider %}
  7. {% include page__hero_video.html %}
  8. {% endif %}
  9. <div id="main" role="main">
  10. <article class="splash" itemscope itemtype="https://schema.org/CreativeWork">
  11. {% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
  12. {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
  13. {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date_to_xmlschema }}">{% endif %}
  14. {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date_to_xmlschema }}">{% endif %}
  15. <section class="page__content" itemprop="text">
  16. <hr>
  17. {% assign split_path = page.path | split: "/" %}
  18. {% assign locale = split_path[1] %}
  19. {% for link in site.data.navigation[locale].bottom %}
  20. {% if link.url contains 'http' %}
  21. {% assign domain = '' %}
  22. {% else %}
  23. {% assign domain = site.url | append: site.baseurl %}
  24. {% endif %}
  25. <div class ="notice"><b>{{ link.title }}</b></div>
  26. {% endfor %}
  27. <hr>
  28. {{ content }}
  29. </section>
  30. </article>
  31. </div>