belong 0.1.0

Simple and flexible static site generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block content %}
  <div class="py-2">
    {% if this.meta.date %}
      <div>
        <small class="text-muted">{{ this.meta.date | date(format="%b %d, %Y") }}</small>
      </div>
    {% endif %}
    {% if this.meta.title %}
      <h1 class="page-title">{{ this.meta.title }}</h1>
    {% endif %}
  </div>
  {{ this.content | safe }}
{% endblock content %}