-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (60 loc) · 1.83 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
layout: post-index
---
<article>
<header>
<h1 class="entry-title">
Welcome to dev/blesi!
</h1>
<hr>
</header>
<div class="entry-content">
<p>
This is where I collect my thoughts on everything technology. Below you'll find a collection of my most recent blog posts. For a full list of blog posts, visit the <a href="/blog/archive/" title="blog" itemprop="url">blog</a> section of my site. For information on a number of my technical projects visit my <a href="/projects/list/" title="projects" itemprop="url">projects</a> section. And for more information about me, check out my <a href="/about/me/" title="about" itemprop="url">about</a> section.
</p>
<p>
Enjoy!
</p>
<p>
-- Patrick Blesi
</p>
</div>
</article>
{% for post in paginator.posts %}
<article>
<!-- POST TITLE -->
<header>
<h1 class="entry-title">
<a href="{{ site.github.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a>
</h1>
</header>
<!-- POST CONTENT -->
<div class="entry-content">
{{ post.content }}
</div>
<!--- DIVIDING LINE -->
<hr>
<!-- POST TAGS -->
<div class="inline-tags">
<span>
{% for tag in post.tags %}
<a href="/blog/tags/#{{tag}}">#{{ tag }} </a>
{% endfor %}
</span>
</div>
<br>
<!-- POST DATE -->
<div class="post-date">
<span class="entry-date date published updated">
<time datetime="{{ post.date | date_to_xmlschema }}">
<a href="{{ site.github.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a>
</time>
</span>
</div>
</article>
{% endfor %}
<div class="pagination">
<center>
{% include pagination.html %}
</center>
</div>