webdog 0.1.4

static site generator fit for a dog
Documentation
1
2
3
4
5
6
7
8
9
{% extends "base.tera" %}
{% block content %}
<h1>{{ title }}</h1>
<ul>
	{% for link in links %}
	<li><a href="{{link.link}}">{{ link.title }}</a></li>
	{% endfor %}
</ul>
{% endblock content %}