website
This commit is contained in:
26
index.html
Normal file
26
index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Home
|
||||
layout: default
|
||||
---
|
||||
|
||||
<section>
|
||||
<p>
|
||||
Technology intrigues me. Pretty much any sort, but I enjoy web-oriented tech the most. I like innovating, technical
|
||||
challenges, and learning new concepts. This is a place to remember some of those experiences. Maybe you'll find
|
||||
something interesting.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
{% for post in site.posts %}
|
||||
<section>
|
||||
<header>
|
||||
<div class="timeline">
|
||||
<time datetime="{{ post.date|date_to_xmlschema }}"><strong>{{ post.date|date:"%b %d"|upcase }}</strong><br />{{ post.date|date:"%Y" }}</time>
|
||||
</div>
|
||||
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
||||
{% if post.tags|size %}
|
||||
<div class="meta" style="margin-bottom:0;margin-top:0;">{% for tag in post.tags %}{% if forloop.index0 > 0 %} · {% endif %}<a href="/tags/{{ tag|slugize }}">{{ tag }}</a>{% endfor %}</div>
|
||||
{% endif %}
|
||||
</header>
|
||||
</section>
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user