Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!-- what do i have to do to apply a Jekyll's standard template ?! -->

<!DOCTYPE html>

<html>
Expand All @@ -6,3 +8,24 @@ <h1>Hello GitHub!</h1>
<p>I'm hosted with GitHub Pages.</p>
</body>
</html>

<!--
---
layout: default
---

<div class="posts">
{% for post in site.posts %}
<article class="post">

<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>

<div class="entry">
{{ post.excerpt }}
</div>

<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>
-->