breb 0.5.0

the blog/reblog library and command-line tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<p>welcome to my new blog!</p>
<p>learn more <a href="/about">about it</a>.</p>
<p>here are my posts:</p>
<ul>
  {% for post in posts['posts'] %}
    <li>
      <strong><a href="/{{ post.url }}">{{ post.title }}</a></strong>:
      {{ post.subtitle }}
      {% for tag in post.tags %}<span class="tag">[{{tag}}]</span>{% endfor %}
      <em>(published {{ post.published[:10] }})</em>
    </li>
  {% endfor %}
</ul>