adapting for new theme
This commit is contained in:
parent
008d2d760c
commit
cd086d53ed
1 changed files with 22 additions and 20 deletions
42
conf.py
42
conf.py
|
|
@ -1,8 +1,9 @@
|
|||
from __future__ import unicode_literals
|
||||
import time
|
||||
BLOG_AUTHOR = "Donald Harper" # (translatable)
|
||||
BLOG_TITLE = "Donald Harper Photography" # (translatable)
|
||||
BLOG_AUTHOR = "Donald Harper"
|
||||
BLOG_TITLE = "Donald Harper Photographs"
|
||||
SITE_URL = "http://www.donaldharper.com/"
|
||||
BASE_URL = "http://localhost:8000/"
|
||||
BLOG_EMAIL = "don@donaldharper.com"
|
||||
BLOG_DESCRIPTION = "Photos, normally daily, from Donald Harper" # (translatable)
|
||||
DEFAULT_LANG = "en"
|
||||
|
|
@ -13,23 +14,24 @@ TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
|
|||
NAVIGATION_LINKS = {
|
||||
DEFAULT_LANG: (
|
||||
('/index.html', 'Home'),
|
||||
('/stories/about/', 'About me'),
|
||||
(
|
||||
(
|
||||
('http://www.donaldharper.com', 'My Photo Blog'),
|
||||
('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
|
||||
('http://www.duckland.org', 'My Personal and Tech Blog'),
|
||||
),
|
||||
'My Sites'
|
||||
),
|
||||
(
|
||||
(
|
||||
('https://twitter.com/duckunix', 'My Twitter'),
|
||||
('https://plus.google.com/+DonHarper/', 'My Google+'),
|
||||
('http://www.linkedin.com/in/donaldharper/', 'My LinkedIN'),
|
||||
),
|
||||
'Social Sites'
|
||||
),
|
||||
('/stories/about.html', 'About me'),
|
||||
('http://www.duckland.org', 'My Personal and Tech Blog'),
|
||||
#(
|
||||
#(
|
||||
#('http://www.donaldharper.com', 'My Photo Blog'),
|
||||
#('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
|
||||
#('http://www.duckland.org', 'My Personal and Tech Blog'),
|
||||
#),
|
||||
#'My Sites'
|
||||
#),
|
||||
('https://twitter.com/duckunix', 'My Twitter'),
|
||||
#(
|
||||
#(
|
||||
#('https://twitter.com/duckunix', 'My Twitter'),
|
||||
#('http://www.linkedin.com/in/donaldharper/', 'My LinkedIN'),
|
||||
#),
|
||||
#'Social Sites'
|
||||
#),
|
||||
("/archive.html", "Archive"),
|
||||
("/categories/index.html", "Tags"),
|
||||
('/rss.xml', 'RSS'),
|
||||
|
|
@ -73,7 +75,7 @@ DEPLOY_COMMANDS = {
|
|||
]
|
||||
}
|
||||
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}...</a></p>'
|
||||
RSS_READ_MORE_LINK = '<p><a href="{link}">{read_more}...</a> ({min_remaining_read})</p>'
|
||||
FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}...</a> ({min_remaining_read})</p>'
|
||||
LICENSE = ""
|
||||
CONTENT_FOOTER = 'Contents © {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a> {license}'
|
||||
CONTENT_FOOTER_FORMATS = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue