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:
parent
4c5a71dd60
commit
1b5f579055
@ -1,5 +1,5 @@
|
||||
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
|
||||
|
||||
### What is this thing called "my data" and why does seemingly everyone want to get hold of it?
|
||||
|
@ -1,7 +1,8 @@
|
||||
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
|
||||
|
||||
|
||||
__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.
|
||||
|
@ -9,7 +9,7 @@ RELATIVE_URLS = False
|
||||
|
||||
AUTHOR = 'offen'
|
||||
SITENAME = 'offen'
|
||||
SITEURL = ''
|
||||
SITEURL = 'https://www.offen.dev'
|
||||
PATH = 'content'
|
||||
TIMEZONE = 'Europe/Berlin'
|
||||
DEFAULT_LANG = 'en'
|
||||
@ -25,9 +25,6 @@ AUTHOR_FEED_RSS = None
|
||||
DEFAULT_PAGINATION = False
|
||||
|
||||
|
||||
|
||||
# added configs ----------------------------------------------
|
||||
|
||||
THEME = './theme'
|
||||
|
||||
# Delete the output directory before generating new files.
|
||||
@ -43,3 +40,6 @@ TAGS_SAVE_AS = None
|
||||
DEFAULT_METADATA = {
|
||||
'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 = []
|
||||
|
BIN
theme/static/images/offen-logo-social-media.jpg
Normal file
BIN
theme/static/images/offen-logo-social-media.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
@ -2,22 +2,23 @@
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<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">
|
||||
|
||||
<!-- Begin SEO tag -->
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<meta property="og:locale" content="en" />
|
||||
<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="offen is a free and open source analytics software for websites and web applications that allows respectful handling of data." />
|
||||
<meta property="og:site_name" content="offen" />
|
||||
<!-- End SEO tag -->
|
||||
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="{{ SITEURL }}/theme/images/favicon.ico">
|
||||
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="description" content="{{ page.summary }}">
|
||||
<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.summary }}">
|
||||
<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">
|
||||
<link rel="stylesheet" type="text/css" href="/theme/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -25,7 +26,7 @@
|
||||
<div class="wrapper">
|
||||
|
||||
<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>
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user