mirror of
https://github.com/extreme-tech-seminar/extreme-tech-seminar.github.io.git
synced 2024-11-15 03:00:22 +00:00
13 lines
No EOL
291 B
HTML
13 lines
No EOL
291 B
HTML
---
|
|
layout: default
|
|
title: Your New Jekyll Site
|
|
---
|
|
|
|
<div id="home">
|
|
<h1>Blog Posts</h1>
|
|
<ul class="posts">
|
|
{% for post in site.posts %}
|
|
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> |