zh_splash.html 1017 B

12345678910111213141516171819202122
  1. ---
  2. layout: zh_base
  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: "%B %d, %Y" }}">{% endif %}
  14. {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
  15. <section class="page__content" itemprop="text">
  16. {{ content }}
  17. </section>
  18. </article>
  19. </div>