diff --git a/homepage/content/pages/index.md b/homepage/content/pages/index.md index 956b887..6dc23dc 100644 --- a/homepage/content/pages/index.md +++ b/homepage/content/pages/index.md @@ -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 diff --git a/homepage/theme/static/css/style.css b/homepage/theme/static/css/style.css index 49442d9..27e7e95 100644 --- a/homepage/theme/static/css/style.css +++ b/homepage/theme/static/css/style.css @@ -406,14 +406,13 @@ MENU .nav-bar { height: 70px; } -.brand, -.brand-index { +.brand { position: absolute; padding: 12px 0 0 20px; float: left; line-height: 70px; } -.brand-index { +body.index .brand { opacity: 0; } .nav-container { diff --git a/homepage/theme/static/scripts/fade.js b/homepage/theme/static/scripts/fade.js index 70e7e13..f4710a9 100644 --- a/homepage/theme/static/scripts/fade.js +++ b/homepage/theme/static/scripts/fade.js @@ -1,7 +1,8 @@ ;(function ($) { $(document).ready(function () { $(window).scroll(function () { - $('.brand-index').css('opacity', 0 + $(window).scrollTop() / 100) + var scrollProgress = parseInt($(window).scrollTop(), 10) + $('body.index .brand').css('opacity', Math.min(scrollProgress / 100, 1)) }) }) })(window.jQuery) diff --git a/homepage/theme/templates/auditorium.html b/homepage/theme/templates/auditorium.html new file mode 100644 index 0000000..1462aa3 --- /dev/null +++ b/homepage/theme/templates/auditorium.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +
- offen is a free and open source analytics software for websites and web applications that allows respectful handling of data. -
-- Anyone can audit our open source code to verify it works as intended. offen will always be available free of charge. + Development of offen has just started. Do not hesitate to make a contribution and help us handle data with respect.
+- Pay respect to your website visitors and gain insights as a user at the same time. All data is encrypted end-to-end. + This project is still in alpha. Discover what is already up and running and where we want to go in the coming months.
+- Simply paste our code into the source of your website. Users can visit the auditorium to access their data. + We're working hard to ensure that offen is independent, cutting-edge and can be sustained for years to come.
+- offen is still in alpha. Discover what is already up and running and where we want to go in the coming months. -
-- Development of offen has just started. Do not hesitate to make a contribution and help us handle data with respect. -
-- This project is still in alpha. Discover what is already up and running and where we want to go in the coming months. -
-- We're working hard to ensure that offen is independent, cutting-edge and can be sustained for years to come. -
-- We're working hard to ensure that offen is independent, cutting-edge and can be sustained for years to come. -
-+ offen is a free and open source analytics software for websites and web applications that allows respectful handling of data. +
++ Anyone can audit our open source code to verify it works as intended. offen will always be available free of charge. +
++ Pay respect to your website visitors and gain insights as a user at the same time. All data is encrypted end-to-end. +
++ Simply paste our code into the source of your website. Users can visit the auditorium to access their data. +
++ offen is still in alpha. Discover what is already up and running and where we want to go in the coming months. +
++ We're working hard to ensure that offen is independent, cutting-edge and can be sustained for years to come. +
+