mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +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.
|
||||
save_as: index.html
|
||||
href: /
|
||||
template: index
|
||||
|
||||
## 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>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<title>
|
||||
{% block title %}{{ page.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">
|
||||
@ -25,17 +27,12 @@
|
||||
{% endif %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="menu">
|
||||
<section class="nav-bar">
|
||||
<div class="nav-container">
|
||||
{% if page.href == "/" %}
|
||||
<div class="brand-index">
|
||||
{% else %}
|
||||
<div class="brand">
|
||||
{% endif %}
|
||||
{% block brand %}
|
||||
<a href="/"><img src="/theme/images/offen-brand-white.svg" alt="offen logo" width="42" height="46" class="logo"></a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
<nav>
|
||||
<div class="nav-mobile"><span id="nav-toggle"><span></span></span></div>
|
||||
<ul class="nav-list">
|
||||
@ -63,96 +60,15 @@
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{% if page.href == "/" %}
|
||||
<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 %}
|
||||
{% block content %}
|
||||
<div class="content">
|
||||
{% endif %}
|
||||
{% if page.href == "/auditorium/operator/" or page.href == "/auditorium/user/" %}
|
||||
<div class="container-full">
|
||||
{% else %}
|
||||
<div class="container-reader">
|
||||
{% endif %}
|
||||
{% block content %}{% endblock %}
|
||||
{{ page.content }}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% if page.href != "/" %}
|
||||
{% block outro %}
|
||||
<div class="cta-bottom">
|
||||
<div class="bg" id="bg-cta-bottom">
|
||||
<div class="container-full">
|
||||
@ -194,25 +110,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% else %}
|
||||
<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 %}
|
||||
{% endblock %}
|
||||
|
||||
<div class="footer">
|
||||
<div class="footer-card-deck">
|
||||
@ -237,6 +135,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</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 %}
|
||||
|
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" %}
|
||||
|
||||
<!--
|
||||
{% block title %}
|
||||
{{ page.title }}
|
||||
{% endblock %}
|
||||
-->
|
||||
|
||||
{% block content %}
|
||||
{% block page_content %}
|
||||
{{ page.content }}
|
||||
{% endblock %}
|
||||
{% block brand %}
|
||||
<div class="brand">
|
||||
{{ super() }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user