diff --git a/content/Système/installationseagatedockstar12.md b/content/Système/installationseagatedockstar12.md index 09c742f..bd5cc39 100644 --- a/content/Système/installationseagatedockstar12.md +++ b/content/Système/installationseagatedockstar12.md @@ -4,6 +4,7 @@ Date: 2012-08-12 21:54 Modified: 2012-08-12 21:54 Category: Système Tags: système, seagate dockstar, debian +keywords: système, seagate dockstar, debian Slug: installation-dockstar-12 Authors: Victor Status: published diff --git a/content/Système/installationseagatedockstar22.md b/content/Système/installationseagatedockstar22.md index 1866916..b7917e4 100644 --- a/content/Système/installationseagatedockstar22.md +++ b/content/Système/installationseagatedockstar22.md @@ -4,10 +4,12 @@ Date: 2012-08-13 21:54 Modified: 2012-08-13 21:54 Category: Système Tags: système, seagate dockstar, debian +keywords: système, seagate dockstar, debian Slug: installation-dockstar-22 Authors: Victor Status: published +[TOC] # Installation de debian sur le dockstar diff --git a/pelicanconf.py b/pelicanconf.py index bf8a40b..61392b8 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -7,17 +7,35 @@ SITENAME = u'Blog de Victor Hery' SITEURL = '' DEFAULT_CATEGORY = 'Système' THEME='./theme' +DIRECT_TEMPLATES = (('index', 'tags', 'categories','archives', 'search', '404')) PATH = 'content' -STATIC_PATHS = ['images'] +STATIC_PATHS = ['theme/images', 'images'] ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{slug}.html' ARTICLE_URL = '{date:%Y}/{date:%m}/{slug}.html' SUMMARY_MAX_LENGTH = 50 DEFAULT_PAGINATION = 4 -#Plugins +### Plugins ### PLUGIN_PATHS = ['../pelican-plugins'] -PLUGINS = ['pelican_comment_system', 'extract_toc'] +PLUGINS = ['pelican_comment_system', 'extract_toc', 'sitemap'] + +#sitemap +SITEMAP = { + 'format': 'xml', + 'priorities': { + 'articles': 0.5, + 'indexes': 0.5, + 'pages': 0.5 + }, + 'changefreqs': { + 'articles': 'monthly', + 'indexes': 'daily', + 'pages': 'monthly' + } +} + +# Comments PELICAN_COMMENT_SYSTEM = True PELICAN_COMMENT_SYSTEM_IDENTICON_DATA = ('author',) PELICAN_COMMENT_SYSTEM_DIR = 'comments'