summaryrefslogtreecommitdiff
path: root/animism-cms/templates/index.liquid
blob: 68b40468d9d2308844a392e2ad70c2b5995ba97c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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" />
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
  <title>e-flux: Animism</title>
  <meta property="og:title" content="e-flux" />
  <meta property="og:image" content="https://www.e-flux.com/elements/e-flux-logo-fb.png?2" />
  <meta property="og:image:width" content="2000" />
  <meta property="og:image:height" content="2000" />
  <meta property="og:description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." />
  <meta name="Description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." />
  <link rel="stylesheet" href="/styles/e-flux-fonts.css" />
  <link rel="stylesheet" href="/styles/e-flux.css" />
  <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
</head>
<body>

<div class="block-overlay content-ready header-lock">

  <div class="header header-article">
    <div class="header-article-topline">
      <div class="logo">
        <a href="/">
          <img src="/elements/e-flux-logo.svg" alt="" />
        </a>
      </div>
    </div>

    <div class="article-topline">
    </div>

    <nav class="menu">
      <ul class="menu-items menu-items-fixed">
        <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="/" 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>
      </ul>
    </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>
</html>