Stub for archive page
This commit is contained in:
parent
c989f8a8c2
commit
6704528d8d
2 changed files with 38 additions and 0 deletions
29
archive/archive.html
Normal file
29
archive/archive.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
layout: default
|
||||
title: "Blog Archive"
|
||||
teaser: "Check out all blog posts in my blog archive. Click on a headline to read the teaser."
|
||||
breadcrumb: true
|
||||
image:
|
||||
header: header_unsplash_8.jpg
|
||||
permalink: "/archive/"
|
||||
---
|
||||
<div id="blog-index" class="row">
|
||||
<div class="small-12 columns t30">
|
||||
<h1>{{ page.title }}</h1>
|
||||
{% if page.teaser %}<p class="teaser">{{ page.teaser }}</p>{% endif %}
|
||||
|
||||
<dl class="accordion" data-accordion>
|
||||
{% assign counter = 1 %}
|
||||
{% for post in site.posts limit:1000 %}
|
||||
<dd class="accordion-navigation">
|
||||
<a href="#panel{{ counter }}"><span class="iconfont"></span> {% if post.subheadline %}{{ post.subheadline }} › {% endif %}<strong>{{ post.title }}</strong></a>
|
||||
<div id="panel{{ counter }}" class="content">
|
||||
{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %}
|
||||
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a><br><br>
|
||||
</div>
|
||||
</dd>
|
||||
{% assign counter=counter | plus:1 %}
|
||||
{% endfor %}
|
||||
</dl>
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
9
archive/index.html
Normal file
9
archive/index.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: blog
|
||||
title: "Blog"
|
||||
teaser: "This is the Feeling Responsive Blog Template."
|
||||
image:
|
||||
header: "unsplash_6_bus_header.jpg"
|
||||
thumb: "unsplash_6_bus_thumb.jpg"
|
||||
---
|
||||
|
Reference in a new issue