blob: e8ace32cb9114ef274de78cc2ae57acf0abac812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
layout: default
title: Blog
permalink:
---
<div id="mainContent">
<!-- About, Blog tiles, Solutions, etc. -->
<div id="blog">
<h2>Blog</h2>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url | relative_url }}">
{% if post.image %}
<img src="{{ post.image | relative_url }}">
{% endif %}
<h3>{{ post.title }}</h3>
<p>{{ post.excerpt }}</p>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
|