From fce390b54ce908d3ac64dc7b8f10e070a6952a77 Mon Sep 17 00:00:00 2001 From: Christoph Gerum Date: Wed, 13 Apr 2016 15:15:01 +0200 Subject: [PATCH] Fixed configuration --- develop_server.sh | 2 +- pelicanconf.py | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/develop_server.sh b/develop_server.sh index 8c2f27f..7d7f475 100755 --- a/develop_server.sh +++ b/develop_server.sh @@ -7,7 +7,7 @@ PELICAN=${PELICAN:-pelican} PELICANOPTS= BASEDIR=$(pwd) -INPUTDIR=$BASEDIR/content +INPUTDIR=$BASEDIR/ OUTPUTDIR=$BASEDIR/output CONFFILE=$BASEDIR/pelicanconf.py diff --git a/pelicanconf.py b/pelicanconf.py index 5fd5f39..25e1087 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,10 +3,12 @@ from __future__ import unicode_literals AUTHOR = u'Christoph Gerum, Michael Kuhn' -SITENAME = u'\xdcbungen Parallele Rechnerarchitektur' +SITENAME = u'Übungen Parallele Rechnerarchitektur' SITEURL = '' -PATH = 'content' +PAGE_PATHS=['aufgaben', 'pages'] +ARTICLE_PATHS=['news'] + TIMEZONE = 'Europe/Berlin' @@ -20,14 +22,16 @@ AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None # Blogroll -LINKS = (('Pelican', 'http://getpelican.com/'), - ('Python.org', 'http://python.org/'), - ('Jinja2', 'http://jinja.pocoo.org/'), - ('You can modify those links in your config file', '#'),) +LINKS = (('Gem5', 'http://gem5.org'), + ('Python', 'https://www.python.org/about/gettingstarted/'), + ('C++', 'http://www.cplusplus.com'), + ('Ilias', 'https://ovidius.uni-tuebingen.de/ilias3/goto.php?target=crs_992056&client_id=pr02'), + ('Forum', 'https://ovidius.uni-tuebingen.de/ilias3/goto.php?target=frm_992065&client_id=pr02'), + ('Abgabe', 'https://ovidius.uni-tuebingen.de/ilias3/goto.php?target=grp_1189352&client_id=pr02'),) # Social widget -SOCIAL = (('You can add links in your config file', '#'), - ('Another social link', '#'),) +#SOCIAL = (('You can add links in your config file', '#'), +# ('Another social link', '#'),) DEFAULT_PAGINATION = False -- GitLab