summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-05-31 12:59:40 +0200
committerHarald Eilertsen <haraldei@anduin.net>2020-05-31 12:59:40 +0200
commit4913ad5fa636e110dc8fd6a618c71b8fa27a3561 (patch)
tree4e4cdfc21b55b17a631de6f1c624282b77e63939 /templates/index.html
parent164c306795577ec7667d338c28a7544bbb8c241b (diff)
downloadrabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.tar.gz
rabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.tar.bz2
rabalderz-4913ad5fa636e110dc8fd6a618c71b8fa27a3561.zip
Add styling, default license etc.
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/index.html b/templates/index.html
index d883a57..91a335d 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -45,37 +45,5 @@
</ul>
{% endfor %}
</ul>
- <section id="stream">
- <ul class="post-list">
- {% for post in section.pages %}
- <article>
- <header class="post-header">
- <h1 class="post-title"><a href="{{ post.permalink }}">{{ post.title }}</a></h1>
- <div class="post-meta">
- {{ post.date }}
- {% if post.taxonomies["tags"] | length > 0 %}
- <ul class="post-tags">
- {% for tag in post.taxonomies["tags"] %}
- <li class="tag">{{ tag }}</li>
- {% endfor %}
- </ul>
- {% endif %}
- </div>
- </header>
- <section class="post-summary">
- {{ post.summary | safe }}
- </section>
- <footer>
- {% if post.content | length > post.summary | length %}
- <a href="{{ post.permalink }}">
- {% if post.lang == 'en' %}More...{% else %}Les mer...{% endif %}
- </a>
- {% endif %}
- </footer>
- </article>
- {% endfor %}
- </ul>
- </section>
-
</div>
{% endblock content %}