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

245 lines
8.0 KiB
HTML
Raw Normal View History

2019-05-30 22:17:39 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-07-26 12:05:08 +02:00
<title>{% block title %}{% endblock %}</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="{{ page.description }}">
<meta property="og:site_name" content="{{ SITENAME }}">
<meta property="og:locale" content="{{ DEFAULT_LANG }}">
<meta property="og:title" content="{{ page.title }}">
<meta property="og:description" content="{{ page.description }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ SITEURL }}/{{ page.save_as }}">
<meta property="og:image" content="{{ SITEURL }}/theme/images/offen-logo-social-media.jpg">
<meta name="twitter:image:alt" content="offen logo">
<meta name="twitter:card" content="summary_large_image">
<link rel="canonical" href="{{ SITEURL }}/{{ page.save_as }}">
<link rel="shortcut icon" type="image/x-icon" href="/theme/images/favicon.ico">
{% assets filters="cssmin", output="css/style.min.css", "css/normalize.css", "css/fonts.css", "css/style.css" %}
<link rel="stylesheet" href="{{ SITEURL }}/{{ ASSET_URL }}">
{% endassets %}
2019-07-26 12:05:08 +02:00
{% if OFFEN_ACCOUNT_ID %}
<script async src="https://script-alpha.offen.dev/script.js" data-account-id="{{ OFFEN_ACCOUNT_ID }}"></script>
{% endif %}
2019-05-30 22:17:39 +02:00
</head>
<body>
2019-08-18 22:28:06 +02:00
<div class="menu">
2019-08-15 21:19:25 +02:00
<section class="nav-bar">
<div class="nav-container">
2019-08-22 09:13:53 +02:00
{% if page.href == "/" %}
<div class="brand-index">
{% else %}
2019-08-15 21:19:25 +02:00
<div class="brand">
2019-08-22 09:13:53 +02:00
{% endif %}
2019-08-22 00:13:11 +02:00
<a href="/"><img src="/theme/images/offen-brand-white.svg" alt="offen logo" width="42" height="46" class="logo"></a>
2019-08-15 21:19:25 +02:00
</div>
<nav>
<div class="nav-mobile"><span id="nav-toggle"><span></span></span></div>
2019-08-15 21:19:25 +02:00
<ul class="nav-list">
2019-08-22 09:13:53 +02:00
<li>
<a href="/">Summary</a>
</li>
2019-08-15 21:19:25 +02:00
<li>
<a href="/deep-dive/">Deep dive</a>
</li>
<li>
<a href="/status/">Status</a>
</li>
<li>
<a href="mailto:{{CONTACT_EMAIL}}">Contact</a>
</li>
<li>
<a href="{{GITHUB_ORG}}" target="_blank">Get involved</a>
</li>
<li>
<a href="{{PATREON_URL}}" target="_blank">Support Us</a>
</li>
</ul>
2019-08-29 22:21:00 +02:00
</nav>
</div>
</section>
</div>
2019-08-15 21:19:25 +02:00
{% if page.href == "/" %}
2019-08-18 22:28:06 +02:00
<div class="intro">
2019-08-29 22:21:00 +02:00
<div class="bg" id="bg-intro">
<div class="container-reader">
<div class="spacer-intro">
<div class="sign">
<img src="/theme/images/offen-sign-brand-white.svg" alt="offen logo" width="152" height="94">
</div>
<h1>
<em>Transparent web analytics for operators and users</em>
</h1>
<p>
<strong>offen</strong> is a free and open source analytics software for websites and web applications that allows respectful handling of data.
</p>
<div class="btn-wrapper">
<a class="btn btn-color-black" href="{{GITHUB_ORG}}" target="_blank">Get involved</a>
</div>
2019-08-24 16:53:54 +02:00
</div>
2019-08-19 22:47:34 +02:00
</div>
2019-08-18 22:28:06 +02:00
</div>
</div>
2019-08-21 12:53:01 +02:00
2019-08-18 22:28:06 +02:00
<div class="feature">
2019-08-29 22:21:00 +02:00
<div class="bg" id="bg-feature">
<div class="container-full">
<div class="card-deck">
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
<em>Free & Open</em>
2019-08-24 21:59:01 +02:00
</h2>
<p>
2019-08-29 22:21:00 +02:00
Anyone can audit our open source code to verify it works as intended. <strong>offen</strong> will always be available free of charge.
2019-08-24 21:59:01 +02:00
</p>
2019-08-20 16:42:19 +02:00
</div>
2019-08-29 22:21:00 +02:00
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
<em>Fair & Secure</em>
2019-08-24 21:59:01 +02:00
</h2>
<p>
Pay respect to your website visitors and gain insights as a user at the same time. All data is encrypted end-to-end.
</p>
2019-08-20 16:42:19 +02:00
</div>
2019-08-29 22:21:00 +02:00
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
<em>Easy to use</em>
2019-08-24 21:59:01 +02:00
</h2>
<p>
Simply paste our code into the source of your website. Users can visit the auditorium to access their data.
</p>
2019-08-20 16:42:19 +02:00
</div>
</div>
</div>
2019-08-18 22:28:06 +02:00
</div>
</div>
2019-08-21 12:53:01 +02:00
2019-08-29 22:21:00 +02:00
2019-08-18 22:28:06 +02:00
<div class="cta-top">
2019-08-29 22:21:00 +02:00
<div class="bg" id="bg-cta-top">
<div class="container-reader">
<div class="spacer-right">
<h2>
In the making
</h2>
<p>
<strong>offen</strong> is still in alpha. Discover what is already up and running and where we want to go in the coming months.
</p>
<div class="btn-wrapper">
<a class="btn btn-color-white" href="/status/">Project status</a>
2019-08-22 00:13:11 +02:00
</div>
</div>
2019-08-19 22:47:34 +02:00
</div>
2019-08-15 21:19:25 +02:00
</div>
</div>
{% endif %}
2019-07-26 12:05:08 +02:00
2019-08-15 21:19:25 +02:00
{% if page.href == "/" %}
2019-08-18 22:28:06 +02:00
<div class="content-index">
{% else %}
<div class="content">
2019-08-15 21:19:25 +02:00
{% endif %}
2019-08-18 22:28:06 +02:00
{% if page.href == "/auditorium/operator/" or page.href == "/auditorium/user/" %}
<div class="container-full">
{% else %}
<div class="container-reader">
2019-08-15 21:19:25 +02:00
{% endif %}
{% block content %}{% endblock %}
</div>
2019-08-18 22:28:06 +02:00
</div>
2019-08-15 21:19:25 +02:00
2019-08-22 00:13:11 +02:00
{% if page.href != "/" %}
2019-08-18 22:28:06 +02:00
<div class="cta-bottom">
2019-08-29 22:21:00 +02:00
<div class="bg" id="bg-cta-bottom">
<div class="container-full">
<div class="card-deck">
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
Participate
2019-08-24 21:59:01 +02:00
</h2>
<p>
2019-08-29 22:21:00 +02:00
Development of <strong>offen</strong> has just started. Do not hesitate to make a contribution and help us handle data with respect.
2019-08-24 21:59:01 +02:00
</p>
2019-08-21 12:53:01 +02:00
<div class="btn-wrapper">
2019-08-24 21:59:01 +02:00
<a class="btn btn-color-black" href="{{GITHUB_ORG}}">Get involved</a>
2019-08-21 12:53:01 +02:00
</div>
</div>
2019-08-29 22:21:00 +02:00
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
In the making
2019-08-24 21:59:01 +02:00
</h2>
<p>
2019-08-29 22:21:00 +02:00
This project is still in alpha. Discover what is already up and running and where we want to go in the coming months.
2019-08-24 21:59:01 +02:00
</p>
2019-08-21 12:53:01 +02:00
<div class="btn-wrapper">
2019-08-24 21:59:01 +02:00
<a class="btn btn-color-black" href="/status/">Project status</a>
2019-08-21 12:53:01 +02:00
</div>
</div>
2019-08-29 22:21:00 +02:00
<div class="card">
2019-08-24 21:59:01 +02:00
<h2>
2019-08-29 22:21:00 +02:00
Good cause
2019-08-24 21:59:01 +02:00
</h2>
<p>
We're working hard to ensure that <strong>offen</strong> is independent, cutting-edge and can be sustained for years to come.
</p>
2019-08-21 12:53:01 +02:00
<div class="btn-wrapper">
2019-08-24 21:59:01 +02:00
<a class="btn btn-color-black" href="{{PATREON_URL}}">Support us</a>
2019-08-21 12:53:01 +02:00
</div>
</div>
</div>
</div>
2019-08-18 22:28:06 +02:00
</div>
</div>
2019-08-22 00:13:11 +02:00
{% else %}
<div class="outro">
2019-08-29 22:21:00 +02:00
<div class="bg" id="bg-outro">
<div class="container-reader">
<div class="spacer-right">
<h2>
Good cause
</h2>
<p>
We're working hard to ensure that <strong>offen</strong> is independent, cutting-edge and can be sustained for years to come.
</p>
<div class="btn-wrapper">
<a class="btn btn-color-black" href="{{PATREON_URL}}">Support us</a>
2019-08-22 00:13:11 +02:00
</div>
</div>
</div>
</div>
</div>
{% endif %}
2019-08-21 12:53:01 +02:00
2019-08-18 22:28:06 +02:00
<div class="footer">
2019-08-21 12:53:01 +02:00
<div class="footer-card-deck">
<div class="footer-card">
2019-08-24 21:59:01 +02:00
<h3><strong>offen</strong></h3>
<h4>Transparent web analytics</h4>
<h4>for everyone</h4>
2019-08-21 12:53:01 +02:00
</div>
<div class="footer-card">
<p>
2019-08-29 22:21:00 +02:00
<a href="mailto:{{CONTACT_EMAIL}}">Contact</a>
2019-08-21 12:53:01 +02:00
</p>
<p>
2019-08-29 22:21:00 +02:00
<a href="{{GITHUB_ORG}}">GitHub</a>
2019-08-21 12:53:01 +02:00
</p>
<p>
2019-08-29 22:21:00 +02:00
<a href="{{PATREON_URL}}">Support Us</a>
2019-08-21 12:53:01 +02:00
</p>
</div>
<div class="footer-card">
2019-08-29 22:21:00 +02:00
September 2019
2019-08-21 12:53:01 +02:00
</div>
</div>
2019-07-26 12:05:08 +02:00
</div>
{% assets filters="rjsmin", output="scripts/packed.js", "scripts/jquery-3.4.1.min.js", "scripts/menu.js", "scripts/fade.js" %}
<script src="{{ SITEURL }}/{{ ASSET_URL }}"></script>
{% endassets %}
2019-05-30 22:17:39 +02:00
</body>
</html>