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