diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.liquid | 59 |
1 files changed, 56 insertions, 3 deletions
diff --git a/templates/index.liquid b/templates/index.liquid index 3580beb..68b4046 100644 --- a/templates/index.liquid +++ b/templates/index.liquid @@ -1,5 +1,5 @@ -<!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="disable-tweet-animation page-with-columns grayscale-active"> +<!doctype html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="disable-tweet-animation page-with-columns grayscale-active no-touch is-desktop overlay-content-loaded sidebar-active scroll-down"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> @@ -36,11 +36,13 @@ <li class="menu-item menu-item-button button-search show-only-on-mobile js-header-tools" data-headertool="search"> <img src="/elements/search.svg" alt="" /> </li> + <!-- <li class="menu-item header-article-close-button"> - <a href="/announcements/" class="article-close-link"> + <a href="/" class="article-close-link"> <img src='/elements/close.svg' alt=''> </a> </li> + --> <li class="menu-item menu-item-button button-menu"> <img src="/elements/menu.svg" alt="" /> </li> @@ -48,6 +50,57 @@ </nav> </div> + <div class="animism-contents"> + Animism<br> + Episode {{ episode.__index | plus: 1 }}: <i>{{ episode.title }}</i> + + <ul> + <h3>Schedule</h3> + {% for episode in episodes %} + <li> + {% if episode.accessible %} + <a> + <span>{{ episode.publicationDate}}</span> + <span>{{ episode.title }}</span> + </a> + {% else %} + <span>{{ episode.publicationDate}}</span> + <span>{{ episode.title }}</span> + {% endif %} + </li> + {% endfor %} + </ul> + + <div> + <div> + <h3>Curator</h3> + {{ episode.curator | newline_to_br }} + </div> + + <div> + <h3>Author</h3> + {{ episode.author | newline_to_br }} + </div> + + <div> + <h3>Artists</h3> + {{ episode.artists | newline_to_br }} + </div> + + <div> + <h3>Sponsors</h3> + {{ episode.sponsors | newline_to_br }} + </div> + </div> + + {% assign roman = "I,II,III,IV,V,VI,VII,VIII,IX,X,XI,XII,XIII,XIV,XV,XVI,XVII,XVIII,XIX,XX" | split: "," %} + {% for ep in sections %} + <div> + Section {{ roman[ep.__index] }}: + {{ ep.title }} + </div> + {% endfor %} + </div> </div> </body> |
