2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 17:10:29 +01:00

updated head section

This commit is contained in:
Hendrik Niefeld 2019-06-01 14:07:43 +02:00
parent 4c5a71dd60
commit 1b5f579055
5 changed files with 23 additions and 21 deletions

View File

@ -1,5 +1,5 @@
Title: Deep dive | offen Title: Deep dive | offen
URL: Summary: offen is a free and open source analytics software for websites and web applications that allows respectful handling of data.
save_as: deep-dive/index.html save_as: deep-dive/index.html
### What is this thing called "my data" and why does seemingly everyone want to get hold of it? ### What is this thing called "my data" and why does seemingly everyone want to get hold of it?

View File

@ -1,7 +1,8 @@
Title: Transparent web analytics | offen Title: Transparent web analytics | offen
URL: Summary: 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
__offen__ is a web analytics software that gives users access to the data they are generating. Not only operators running sites or applications are given able to use the analytics tools, but also *the users themselves are granted access to and ownership of their data*. __offen__ is a web analytics software that gives users access to the data they are generating. Not only operators running sites or applications are given able to use the analytics tools, but also *the users themselves are granted access to and ownership of their data*.
Usage metrics come with explanations about their meaning, relevance, usage and possible privacy implications. __offen__ also details *which kind of data is not collected*. All data can be deleted selectively or in its entirety by the users, or the collection can be disabled altogether. Usage metrics come with explanations about their meaning, relevance, usage and possible privacy implications. __offen__ also details *which kind of data is not collected*. All data can be deleted selectively or in its entirety by the users, or the collection can be disabled altogether.

View File

@ -9,7 +9,7 @@ RELATIVE_URLS = False
AUTHOR = 'offen' AUTHOR = 'offen'
SITENAME = 'offen' SITENAME = 'offen'
SITEURL = '' SITEURL = 'https://www.offen.dev'
PATH = 'content' PATH = 'content'
TIMEZONE = 'Europe/Berlin' TIMEZONE = 'Europe/Berlin'
DEFAULT_LANG = 'en' DEFAULT_LANG = 'en'
@ -25,9 +25,6 @@ AUTHOR_FEED_RSS = None
DEFAULT_PAGINATION = False DEFAULT_PAGINATION = False
# added configs ----------------------------------------------
THEME = './theme' THEME = './theme'
# Delete the output directory before generating new files. # Delete the output directory before generating new files.
@ -43,3 +40,6 @@ TAGS_SAVE_AS = None
DEFAULT_METADATA = { DEFAULT_METADATA = {
'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.'
} }
# keep this for access to page variable
DIRECT_TEMPLATES = []

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -2,22 +2,23 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>{% block 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"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="{{ page.summary }}">
<!-- Begin SEO tag --> <meta property="og:site_name" content="{{ SITENAME }}">
<title>{% block title %}{% endblock %}</title> <meta property="og:locale" content="{{ DEFAULT_LANG }}">
<meta property="og:locale" content="en" /> <meta property="og:title" content="{{ page.title }}">
<meta name="description" content="offen is a free and open source analytics software for websites and web applications that allows respectful handling of data." /> <meta property="og:description" content="{{ page.summary }}">
<meta property="og:description" content="offen is a free and open source analytics software for websites and web applications that allows respectful handling of data." /> <meta property="og:type" content="website">
<meta property="og:site_name" content="offen" /> <meta property="og:url" content="{{ SITEURL }}/{{ page.save_as }}">
<!-- End SEO tag --> <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="shortcut icon" type="image/x-icon" href="{{ SITEURL }}/theme/images/favicon.ico"> <link rel="canonical" href="{{ SITEURL }}/{{ page.save_as }}">
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css"> <link rel="shortcut icon" type="image/x-icon" href="/theme/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="/theme/css/style.css">
</head> </head>
<body> <body>
@ -25,7 +26,7 @@
<div class="wrapper"> <div class="wrapper">
<header> <header>
<a href="/" title="offen home page" alt="offen home page"><img src="{{ SITEURL }}/theme/images/logo.svg" alt="offen logo" width="165" height="102" class="logo"></a> <a href="/" title="offen home page" alt="offen home page"><img src="/theme/images/logo.svg" alt="offen logo" width="165" height="102" class="logo"></a>
</header> </header>
{% block content %}{% endblock %} {% block content %}{% endblock %}