-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.html
31 lines (30 loc) · 1.03 KB
/
blog.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
---
layout: page
title: Chuck Lauer Vose's Thoughts
---
<div id="posts">
{% for post in site.categories.tech %}
<div class="entry clearfix">
<!-- <div class="entry-image">
<a href="images/blog/full/17.jpg" data-lightbox="image"><img class="image_fade" src="images/blog/standard/17.jpg" alt="Standard Post with Image"></a>
</div> -->
<div class="entry-title">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i> {{ post.date | date: '%B %d, %Y' }}</li>
<li><a href="#"><i class="icon-user"></i> <a href="mailto:[email protected]">Chuck Lauer Vose</a></a></li>
<li><i class="icon-folder-open"></i>
{{ post.tags.pop }}
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
</li>
</ul>
<div class="entry-content">
<p>{{ post.content | strip_html | truncate: 450}}</p>
<a href="{{ post.url }}" class="more-link">Read More</a>
</div>
</div>
{% endfor %}
</div>