diff --git a/__pycache__/pelicanconf.cpython-36.pyc b/__pycache__/pelicanconf.cpython-36.pyc index 956adb2..0baeb7c 100644 Binary files a/__pycache__/pelicanconf.cpython-36.pyc and b/__pycache__/pelicanconf.cpython-36.pyc differ diff --git a/output/theme/style.css b/content/css/style.css similarity index 100% rename from output/theme/style.css rename to content/css/style.css diff --git a/output/theme/logo.svg b/content/img/logo.svg similarity index 100% rename from output/theme/logo.svg rename to content/img/logo.svg diff --git a/content/index.md b/content/index.md new file mode 100644 index 0000000..5558034 --- /dev/null +++ b/content/index.md @@ -0,0 +1,5 @@ +Title: Welcome to My Site +URL: +save_as: index2.html + +Thank you for visiting. Welcome! diff --git a/content/pages/test.md b/content/pages/test.md deleted file mode 100644 index 0a8d4e0..0000000 --- a/content/pages/test.md +++ /dev/null @@ -1,3 +0,0 @@ -Title: Test Page - -This is a test page. diff --git a/output/archives.html b/output/archives.html deleted file mode 100644 index 980ac84..0000000 --- a/output/archives.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - -offen - Archives - - - - - -
- -
- -
- -

Archives for offen

- -
-
- - - -
- - - \ No newline at end of file diff --git a/output/authors.html b/output/authors.html deleted file mode 100644 index b2a2448..0000000 --- a/output/authors.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - -offen - Authors - - - - - -
- -
- -
- -

Authors on offen

- - - - -
- - - \ No newline at end of file diff --git a/output/categories.html b/output/categories.html deleted file mode 100644 index 630c72e..0000000 --- a/output/categories.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - -offen - Categories - - - - - -
- -
- -
- -

Categories on offen

- - - - -
- - - \ No newline at end of file diff --git a/output/pages/test-page.html b/output/deepdive.html similarity index 51% rename from output/pages/test-page.html rename to output/deepdive.html index efd3cbe..2747ea7 100644 --- a/output/pages/test-page.html +++ b/output/deepdive.html @@ -2,8 +2,8 @@ -offen - Test Page - + + @@ -11,13 +11,20 @@
- +
-

Test Page

- -

This is a test page.

+
+

+offen is a free analysis software for websites and web applications that allows a fair handling of data. +

+ +THIS IS THE DEEP DIVE PAGE + +

Overview

+ +
diff --git a/output/index.html b/output/index.html index d70d9d5..efa744c 100644 --- a/output/index.html +++ b/output/index.html @@ -3,7 +3,7 @@ - + @@ -11,7 +11,7 @@
- +
@@ -19,15 +19,10 @@

offen is a free analysis software for websites and web applications that allows a fair handling of data.

-

offen not only allows operators to access the analysis data, but also gives users access to the data points assigned to them.

-

All metrics contain explanations about their meaning and use. What is not collected is clearly recognizable. Data can be deleted or the recording can be stopped completely by users.

+THIS IS THE INDEX PAGE -

Our goal is to provide users and operators with full transparency and thus encourage everybody involved to make independent decisions regarding the use of their data.

- -

offen open is currently in the concept phase and is applying for various development funds.

- -

Deep Dive

+

Deep Dive

@@ -41,7 +36,7 @@ May 2019 GitHub
  • -Contakt +Contact
  • diff --git a/output/tags.html b/output/tags.html deleted file mode 100644 index 3a8bdfe..0000000 --- a/output/tags.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - -offen - Tags - - - - - -
    - -
    - -
    - -

    Tags for offen

    -
      -
    - - - -
    - - - \ No newline at end of file diff --git a/pelicanconf.py b/pelicanconf.py index d3ad74d..c0cd538 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -1,15 +1,13 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals +import logging AUTHOR = 'offen' SITENAME = 'offen' SITEURL = '' - PATH = 'content' - TIMEZONE = 'Europe/Berlin' - DEFAULT_LANG = 'en' # Feed generation is usually not desired when developing @@ -25,4 +23,23 @@ DEFAULT_PAGINATION = False # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True + + + +# added configs ---------------------------------------------- THEME = 'offen' + +# Delete the output directory before generating new files. +DELETE_OUTPUT_DIRECTORY = True + +# List of templates that are used directly to render content. +DIRECT_TEMPLATES = ['index','deepdive'] + +# The static paths you want to have accessible on the output path “static”. +STATIC_PATHS = ['img', 'css'] + +# The default metadata you want to use for all articles and pages. +DEFAULT_METADATA = { + 'description': 'A brief description of your site', + 'status': 'draft' +}