forked from github/pelican
--HG-- rename : samples/themes/notmyidea/archives.html => samples/themes/notmyidea/templates/archives.html rename : samples/themes/notmyidea/article.html => samples/themes/notmyidea/templates/article.html rename : samples/themes/notmyidea/base.html => samples/themes/notmyidea/templates/base.html rename : samples/themes/notmyidea/categories.html => samples/themes/notmyidea/templates/categories.html rename : samples/themes/notmyidea/category.html => samples/themes/notmyidea/templates/category.html rename : samples/themes/notmyidea/index.html => samples/themes/notmyidea/templates/index.html rename : samples/themes/notmyidea/tag.html => samples/themes/notmyidea/templates/tag.html rename : samples/themes/notmyidea/tags.html => samples/themes/notmyidea/templates/tags.html
20 lines
745 B
Python
20 lines
745 B
Python
# -*- coding: utf-8 -*-
|
|
PATH = 'samples/content'
|
|
THEME = 'samples/themes/notmyidea'
|
|
|
|
BLOGNAME = 'NotMyIdea.org'
|
|
BLOGSUBTITLE = u"Alexis Métaireau's weblog"
|
|
BLOGURL = 'http://blog.notmyidea.org'
|
|
|
|
BLOGROLL = (('Biologeek', 'http://biologeek.org'),
|
|
('Filyb', "http://filyb.info/"),
|
|
('Libert-fr', "http://www.libert-fr.com"),
|
|
('N1k0', "http://prendreuncafe.com/blog/"),
|
|
(u'Tarek Ziadé', "http://ziade.org/blog"),
|
|
('Zubin Mithra', "http://zubin71.wordpress.com/"),)
|
|
|
|
MENUITEMS = (('home', 'http://notmyidea.org'),
|
|
('contact', 'mailto: alexis notmyidea org'),)
|
|
|
|
SOCIAL = (('twitter', 'http://twitter.com/ametaireau'),
|
|
('lastfm', 'http://lastfm.com/user/akounet'),)
|