2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/templates/index.html

100 lines
3.2 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2019-12-22 15:22:13 +01:00
<div class="w100 cclr-mid-yellow mt5 mb0 pa0"> <!--intro-->
2019-12-22 12:56:02 +01:00
<div class="w100" id="bg-intro">
2019-12-22 15:22:13 +01:00
<div class="mw6 center">
<div class="pa0 ma0">
<img src="/theme/images/offen-logo-white.svg" alt="Offen logo" width="152" height="94">
</div>
<h1 class="pa0 ma0">
<em>Transparent web analytics for operators and users</em>
</h1>
<p class="pa0 ma0">
Offen is a free and open source analytics software for websites and web applications that allows respectful handling of data.
</p>
<div class="pa0 ma0">
<a class="btn btn-color-black" href="{{GITHUB_ORG}}" rel="noopener" target="_blank">Get involved</a>
</div>
</div>
</div>
</div>
2019-12-22 15:22:13 +01:00
<div class="w100 cclr-mid-mint"> <!--feature-->
2019-12-22 12:56:02 +01:00
<div class="w100" id="bg-feature">
<div class="mw8 center">
<div class="card-deck">
<div class="card">
2019-12-22 15:22:13 +01:00
<h2 class="pa0 ma0">
<em>Free & Open</em>
</h2>
2019-12-22 15:22:13 +01:00
<p class="pa0 ma0">
Anyone can audit our open source code to verify it works as intended. Offen will always be available free of charge.
</p>
</div>
<div class="card">
2019-12-22 15:22:13 +01:00
<h2 class="pa0 ma0">
<em>Fair & Secure</em>
</h2>
2019-12-22 15:22:13 +01:00
<p class="pa0 ma0">
Pay respect to your website visitors and gain insights as a user at the same time. All data is encrypted end-to-end.
</p>
</div>
<div class="card">
2019-12-22 15:22:13 +01:00
<h2 class="pa0 ma0">
<em>Easy to use</em>
</h2>
2019-12-22 15:22:13 +01:00
<p class="pa0 ma0">
Simply paste our code into the source of your website. Users can visit the auditorium to access their data.
</p>
</div>
</div>
</div>
</div>
</div>
2019-12-22 15:22:13 +01:00
<div class="w100 cclr-mid-black white"> <!--cta-top-->
<div class="w100" id="bg-cta-top">
<div class="mw8 center">
<div class="mw6 center tr">
<h2 class="pa0 ma0">
In the making
</h2>
2019-12-22 15:22:13 +01:00
<p class="pa0 ma0">
Offen is still in alpha. Discover what is already up and running and where we want to go in the coming months.
</p>
2019-12-22 15:22:13 +01:00
<div class="pa0 ma0">
2019-12-13 13:17:19 +01:00
<a class="btn btn-color-white" href="/blog/">Project status</a>
</div>
</div>
</div>
</div>
</div>
2019-12-22 15:22:13 +01:00
<div class="w100 bg-white mid-grey"> <!--content-index-->
<div class="mw6 center">
{{ page.content }}
</div>
</div>
{% endblock %}
{% block outro %}
2019-12-22 15:22:13 +01:00
<div class="w100 cclr-mid-yellow"> <!--outro-->
<div class="w100" id="bg-outro">
<div class="mw8 center">
<div class="mw6">
<h2 class="pa0 ma0">
Ethical internet
</h2>
2019-12-22 15:22:13 +01:00
<p class="pa0 ma0">
We're working hard to ensure that Offen is independent, cutting-edge and can be sustained for years to come.
</p>
2019-12-22 15:22:13 +01:00
<div class="pa0 ma0">
2019-09-29 16:43:50 +02:00
<a class="btn btn-color-black" href="{{PATREON_URL}}" rel="noopener" target="_blank">Support us</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}