21 lines
429 B
HTML
21 lines
429 B
HTML
|
---
|
||
|
layout: page
|
||
|
title: All Posts
|
||
|
permalink: /archives/all/
|
||
|
hide: true
|
||
|
share: false
|
||
|
---
|
||
|
|
||
|
<div id="search-results">
|
||
|
<hr id="first-hr" class="with-no-margin"/>
|
||
|
|
||
|
{% for post in site.posts %}
|
||
|
<div class="article-wrapper">
|
||
|
<article>
|
||
|
{% include article-header.html page=post link=true share=false eye_catch=false %}
|
||
|
</article>
|
||
|
</div>
|
||
|
<hr class="with-no-margin"/>
|
||
|
{% endfor %}
|
||
|
</div>
|