37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
---
|
|
title: Home
|
|
layout: default
|
|
tags: danny daniel berger dpb587 dbchip2000
|
|
---
|
|
|
|
<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 paginator.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>
|
|
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
|
{% if post.description %}
|
|
<div class="meta" style="margin-bottom:0;margin-top:0;">{{ post.description }}</div>
|
|
{% endif %}
|
|
</header>
|
|
</section>
|
|
{% endfor %}
|
|
|
|
{% if paginator.next_page %}
|
|
<section>
|
|
<header>
|
|
<h1><a href="/blog/">more posts →</a></h1>
|
|
<div class="meta" style="margin-bottom:0;margin-top:0;">See the full list of {{ site.posts.size }} posts.</div>
|
|
</header>
|
|
</section>
|
|
{% endif %}
|