You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
522 B
13 lines
522 B
9 years ago
|
<div class="bullets">
|
||
|
{% for post in site.posts %}
|
||
|
<div class="bullet three-col-bullet">
|
||
|
<div class="bullet-icon">
|
||
|
<a href="{{ site.url }}{{ post.url }}"><img src="{{ site.url }}/images/{{ post.image.teaser }}" alt=""></a>
|
||
|
</div><!-- /.bullet-icon -->
|
||
|
<div class="bullet-content">
|
||
|
<h2><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h2>
|
||
|
<p>{{ post.excerpt | remove: '<p>' | remove: '</p>'}}</p>
|
||
|
</div><!-- /.bullet-content -->
|
||
|
</div><!-- /.bullet -->
|
||
|
{% endfor %}
|
||
|
</div><!-- /.bullets -->
|