mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-08 23:03:03 -08:00
28 lines
704 B
HTML
28 lines
704 B
HTML
---
|
|
layout: page
|
|
title: Blog
|
|
permalink: /blog/
|
|
menu: Blog
|
|
categories: []
|
|
comments: []
|
|
tags: []
|
|
---
|
|
<div class="container-fluid">
|
|
|
|
<div class="col-md-7">
|
|
{% for post in site.posts %}{% if post.draft %}{% continue %}{% endif %}
|
|
<div class="panel panel-primary" id="blog_{{ forloop.index }}">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{{ post.date | date: "%-d %b %Y" }}: {{ post.title }}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
{{ post.content | markdownify | strip_html | truncatewords:80 }}
|
|
</div>
|
|
<div class="panel-footer">
|
|
Read more: <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|