mirror of
https://github.com/offen/website.git
synced 2024-11-23 01:20:29 +01:00
18 lines
427 B
HTML
18 lines
427 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
<h1>
|
|
<strong>offen</strong> is a free and open source analytics software for websites and web applications that allows respectful handling of data.
|
|
</h1>
|
|
|
|
{% block before_content %}{% endblock %}
|
|
{% block page_content %}{{ page.content }}{% endblock %}
|
|
{% block after_content %}{% endblock %}
|
|
|
|
</section>
|
|
{% endblock %}
|