Guide_3DS/_layouts/splash.html

47 lines
1.5 KiB
HTML
Raw Normal View History

2016-10-30 01:02:14 +02:00
---
layout: default
---
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
2017-09-28 23:42:38 +02:00
{% elsif page.header.video.id and page.header.video.provider %}
{% include page__hero_video.html %}
2016-10-30 01:02:14 +02:00
{% endif %}
<div id="main" role="main">
<article class="splash" itemscope itemtype="http://schema.org/CreativeWork">
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
2017-09-28 23:42:38 +02:00
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
2016-10-30 01:02:14 +02:00
<section class="page__content" itemprop="text">
2019-05-15 20:50:01 +02:00
<hr>
2017-05-10 22:05:51 +02:00
{% assign split_path = page.path | split: "/" %}
{% assign locale = split_path[1] %}
{% for link in site.data.navigation[locale].bottom %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url | append: site.baseurl %}
{% endif %}
<div class ="notice"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
2016-10-30 01:02:14 +02:00
{{ content }}
</section>
</article>
<hr>
2019-04-18 03:10:01 +02:00
2017-05-10 22:05:51 +02:00
<center>
2019-05-13 21:57:11 +02:00
<div id="waldo-tag-4187"></div>
2016-10-30 01:02:14 +02:00
</center>
</div>