cartulary 0.3.0-alpha.1

The knowledge layer of your project — decisions, issues, docs, all in one place.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layouts/base.html" %}
{% block content %}
<h1>{{ site.title | default(value="Documentation") }}</h1>
<ul class="section-list">
  {% for section in sections %}
  <li>
    <a href="{{ section.url | safe }}">{{ section.title }}</a>
    <span class="count">({{ section.count }})</span>
  </li>
  {% endfor %}
</ul>
{% endblock %}