summaryrefslogtreecommitdiff
path: root/templates/index.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.liquid')
-rw-r--r--templates/index.liquid28
1 files changed, 16 insertions, 12 deletions
diff --git a/templates/index.liquid b/templates/index.liquid
index eea39fe..2756620 100644
--- a/templates/index.liquid
+++ b/templates/index.liquid
@@ -6,39 +6,43 @@
</head>
<body>
-<center>
<div id='header'>
<h1>How to make a Folkestone.</h1>
- <a href="https://docs.google.com/forms/d/10dqrK_3UZW_xlPWQLERd0xTwVONryyicNuz2aYz3X_I/edit?c=0&w=1"<h2>Participate!</h2></a>
+ <a href="https://docs.google.com/forms/d/10dqrK_3UZW_xlPWQLERd0xTwVONryyicNuz2aYz3X_I/edit?c=0&w=1"><h2>Participate!</h2></a>
<div id='tags'></div>
-</div></center>
+</div>
<br>
-<center>
<div id='body'>
{% for entry in entries %}
{% unless entry.disabled %}
<div class='cell' data-id='{{ entry.id }}'>
- {{ entry.title }}
+ <div class='title'>
+ {{ entry.title }}
+ </div>
</div>
{% endunless %}
{% endfor %}
-</div></center>
+</div>
{% for page in pages %}
{% unless page.disabled %}
<div id='{{ page.id }}' class='page'>
- <h2>{{ page.title }}</h2>
- {{ page.body | newline_to_br }}
+ <div class='inner'>
+ <h2>{{ page.title }}</h2>
+ {{ page.body | newline_to_br }}
+ </div>
</div>
{% endunless %}
{% endfor %}
<div id='entry'>
- <div class='close'>&times;</div>
- <div class='media'></div>
- <h2></h2>
- <div class='content'></div>
+ <div class='inner'>
+ <div class='close'>&times;</div>
+ <div class='media'></div>
+ <h2></h2>
+ <div class='content'></div>
+ </div>
</div>
</body>