forked from ronv/sidey
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
executable file
·28 lines (26 loc) · 878 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
layout: default
---
<section id="intro">
<div class="flex-row-between">
<h1>Hi 👋</h1>
<button id="theme-toggle" onclick="modeSwitcher()">
<div></div>
</button>
</div>
<p>Maecenas euismod, ante eu mollis tempus, justo tellus tempus dui, non suscipit tellus diam vel ipsum. Phasellus
euismod auctor <a href="#">condimentum</a>. Aenean at ex dolor. Praesent eget venenatis erat, sit amet cursus
nulla. Vestibulum
rutrum, turpis id aliquam sagittis.
</p>
</section>
<section class="posts">
<h3>BLOG</h3>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time></li>
{% endfor %}
</ul>
</section>