54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
---
|
|
permalink: "/"
|
|
layout:
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
<div class="metro">
|
|
<h1 class="logo">
|
|
<img src="{{ site.baseurl }}/images/logo.svg" style="height: 50px" />
|
|
</h1>
|
|
<nav>
|
|
<ul class="menu">
|
|
<li class="menu__item">
|
|
<a href="/me">Me</a>
|
|
</li>
|
|
<li class="menu__item">
|
|
<a href="https://github.com/{{ site.github.username }}">GitHub</a>
|
|
</li>
|
|
<li class="menu__item">
|
|
<a href="https://twitter.com/{{ site.twitter.username }}"
|
|
>Twitter</a
|
|
>
|
|
</li>
|
|
<li class="menu__item">
|
|
<a href="/wallpaper">Wallpaper</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<section>
|
|
{% for post in site.posts %}
|
|
<article class="article-list__item">
|
|
<h2 class="article-list__item__title">
|
|
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
</h2>
|
|
<!-- <time class="article-list__item__pubdate" pubdate>{{ post.date | date: '%B %d, %Y' }}</time> -->
|
|
<article class="article-list__item__excerpt">
|
|
{{ post.excerpt | strip_html | truncate: 140, "..." }}
|
|
</article>
|
|
<a
|
|
class="article-list__item__button"
|
|
href="{{ post.url | prepend: site.baseurl }}"
|
|
>Read more</a
|
|
>
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|