render posts after the first on the front page; not too much spacing
authorM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Mon, 5 Sep 2016 20:12:04 +0000 (13:12 -0700)
committerM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Mon, 5 Sep 2016 20:12:04 +0000 (13:12 -0700)
theme/static/css/main.css
theme/templates/index.html

index 4400a8b..d10a6a7 100644 (file)
@@ -128,8 +128,6 @@ h1, h2, h3, h4, h5, h6 {
 
 h1 {
   font-size: 2em;
-  margin: 0.67em 0;
-  padding: 0.7em 0 0.3em;
 }
 
 h1 a {
@@ -176,7 +174,6 @@ pre {
 }
 
 hr {
-  margin: 40px 5% 60px 5%;
   color: #d6d6d6;
   box-shadow: 0.1em 0.1em 0.1em #EFEFEF;
   border-radius: 5px;
index 8f82005..56079ac 100644 (file)
@@ -4,33 +4,11 @@
 {% block content %}
 
 {% for article in articles %}
-
-    {% if loop.index == 1 %}
-
-      <article>
-        <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
-        {{ article.content }}
-      </article>
-
-      <hr />
-
-      {% if loop.length  > 1 %}
-        <div>
-          <h3>Last posts</h3>
-          <ol class="archive">
-      {% endif %}
-    
-    {% elif loop.index < 7 %}
-      <li>
-        {% include 'article_link.inc.html' %}
-      </li>
-    {% endif %}
-
+  <article>
+    <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
+    {{ article.content }}
+  </article>
+  <hr />
 {% endfor %}
 
-{% if articles|length > 1 %}
-          </ol>
-        </div>
-{% endif %}
-
 {% endblock content %}