mirror of
https://github.com/extreme-tech-seminar/extreme-tech-seminar.github.io.git
synced 2024-11-15 03:00:22 +00:00
15 lines
291 B
HTML
15 lines
291 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
<article>
|
|
<h1><a href="{{post.url }}">{{ post.title }}</a></h1>
|
|
<div class="excerpt">
|
|
{{ post.excerpt }}
|
|
</div>
|
|
<footer>
|
|
<a href="{{ post.url }}">Read more …</a>
|
|
</footer>
|
|
</article>
|
|
{% endfor %}
|