mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
use template inheritance for distinguishing layouts
This commit is contained in:
parent
8f5bc24fd1
commit
a553147a94
@ -2,6 +2,7 @@ Title: Transparent web analytics | offen
|
|||||||
description: offen is a free and open source analytics software for websites and web applications that allows respectful handling of data.
|
description: offen is a free and open source analytics software for websites and web applications that allows respectful handling of data.
|
||||||
save_as: index.html
|
save_as: index.html
|
||||||
href: /
|
href: /
|
||||||
|
template: index
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
|
15
homepage/theme/templates/auditorium.html
Normal file
15
homepage/theme/templates/auditorium.html
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block brand %}
|
||||||
|
<div class="brand">
|
||||||
|
{{ super() }}
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="content">
|
||||||
|
<div class="container-full">
|
||||||
|
{{ page.content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
@ -1,7 +1,9 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>{% block title %}{% endblock %}</title>
|
<title>
|
||||||
|
{% block title %}{{ page.title }}{% endblock %}
|
||||||
|
</title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
@ -25,17 +27,12 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="menu">
|
<div class="menu">
|
||||||
<section class="nav-bar">
|
<section class="nav-bar">
|
||||||
<div class="nav-container">
|
<div class="nav-container">
|
||||||
{% if page.href == "/" %}
|
{% block brand %}
|
||||||
<div class="brand-index">
|
|
||||||
{% else %}
|
|
||||||
<div class="brand">
|
|
||||||
{% endif %}
|
|
||||||
<a href="/"><img src="/theme/images/offen-brand-white.svg" alt="offen logo" width="42" height="46" class="logo"></a>
|
<a href="/"><img src="/theme/images/offen-brand-white.svg" alt="offen logo" width="42" height="46" class="logo"></a>
|
||||||
</div>
|
{% endblock %}
|
||||||
<nav>
|
<nav>
|
||||||
<div class="nav-mobile"><span id="nav-toggle"><span></span></span></div>
|
<div class="nav-mobile"><span id="nav-toggle"><span></span></span></div>
|
||||||
<ul class="nav-list">
|
<ul class="nav-list">
|
||||||
@ -63,96 +60,15 @@
|
|||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if page.href == "/" %}
|
{% block content %}
|
||||||
<div class="intro">
|
|
||||||
<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>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="feature">
|
|
||||||
<div class="bg" id="bg-feature">
|
|
||||||
<div class="container-full">
|
|
||||||
<div class="card-deck">
|
|
||||||
<div class="card">
|
|
||||||
<h2>
|
|
||||||
<em>Free & Open</em>
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
Anyone can audit our open source code to verify it works as intended. <strong>offen</strong> will always be available free of charge.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h2>
|
|
||||||
<em>Fair & Secure</em>
|
|
||||||
</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>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h2>
|
|
||||||
<em>Easy to use</em>
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
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>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="cta-top">
|
|
||||||
<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>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if page.href == "/" %}
|
|
||||||
<div class="content-index">
|
|
||||||
{% else %}
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{% endif %}
|
|
||||||
{% if page.href == "/auditorium/operator/" or page.href == "/auditorium/user/" %}
|
|
||||||
<div class="container-full">
|
|
||||||
{% else %}
|
|
||||||
<div class="container-reader">
|
<div class="container-reader">
|
||||||
{% endif %}
|
{{ page.content }}
|
||||||
{% block content %}{% endblock %}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% if page.href != "/" %}
|
{% block outro %}
|
||||||
<div class="cta-bottom">
|
<div class="cta-bottom">
|
||||||
<div class="bg" id="bg-cta-bottom">
|
<div class="bg" id="bg-cta-bottom">
|
||||||
<div class="container-full">
|
<div class="container-full">
|
||||||
@ -194,25 +110,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% endblock %}
|
||||||
<div class="outro">
|
|
||||||
<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>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="footer-card-deck">
|
<div class="footer-card-deck">
|
||||||
@ -237,6 +135,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% assets filters="rjsmin", output="scripts/packed.js", "scripts/jquery-3.4.1.min.js", "scripts/menu.js", "scripts/fade.js" %}
|
{% 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>
|
<script src="{{ SITEURL }}/{{ ASSET_URL }}"></script>
|
||||||
{% endassets %}
|
{% endassets %}
|
||||||
|
107
homepage/theme/templates/index.html
Normal file
107
homepage/theme/templates/index.html
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block brand %}
|
||||||
|
<div class="brand-index">
|
||||||
|
{{ super() }}
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="intro">
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="feature">
|
||||||
|
<div class="bg" id="bg-feature">
|
||||||
|
<div class="container-full">
|
||||||
|
<div class="card-deck">
|
||||||
|
<div class="card">
|
||||||
|
<h2>
|
||||||
|
<em>Free & Open</em>
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
Anyone can audit our open source code to verify it works as intended. <strong>offen</strong> will always be available free of charge.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h2>
|
||||||
|
<em>Fair & Secure</em>
|
||||||
|
</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>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h2>
|
||||||
|
<em>Easy to use</em>
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
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>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="cta-top">
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-index">
|
||||||
|
<div class="container-reader">
|
||||||
|
{{ page.content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block outro %}
|
||||||
|
<div class="outro">
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
@ -1,13 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
<!--
|
{% block brand %}
|
||||||
{% block title %}
|
<div class="brand">
|
||||||
{{ page.title }}
|
{{ super() }}
|
||||||
{% endblock %}
|
</div>
|
||||||
-->
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
{% block page_content %}
|
|
||||||
{{ page.content }}
|
|
||||||
{% endblock %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user