updated config for theme change
This commit is contained in:
parent
710a2971df
commit
a4885598fa
30
conf.py
30
conf.py
|
@ -17,16 +17,16 @@ import time
|
|||
|
||||
|
||||
# Data about this site
|
||||
BLOG_AUTHOR = "Nikola Tesla" # (translatable)
|
||||
BLOG_TITLE = "Example Nikola website using GitLab Pages!" # (translatable)
|
||||
BLOG_AUTHOR = "LISSA Board" # (translatable)
|
||||
BLOG_TITLE = "LIS Scholarship Archive" # (translatable)
|
||||
# This is the main URL for your site. It will be used
|
||||
# in a prominent link. Don't forget the protocol (http/https)!
|
||||
SITE_URL = "https://pages.gitlab.io/nikola/"
|
||||
SITE_URL = "https://lissarchive.org/"
|
||||
# This is the URL where Nikola's output will be deployed.
|
||||
# If not set, defaults to SITE_URL
|
||||
# BASE_URL = "https://pages.gitlab.io/nikola/"
|
||||
BLOG_EMAIL = "n.tesla@example.com"
|
||||
BLOG_DESCRIPTION = "This is a demo site for Nikola." # (translatable)
|
||||
# BASE_URL = "https://example.com/"
|
||||
BLOG_EMAIL = "vicky.steeves@nyu.edu"
|
||||
BLOG_DESCRIPTION = "An open, scholarly platform for LIS." # (translatable)
|
||||
|
||||
# Nikola is multilingual!
|
||||
#
|
||||
|
@ -129,14 +129,15 @@ TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
|
|||
|
||||
NAVIGATION_LINKS = {
|
||||
DEFAULT_LANG: (
|
||||
("/archive.html", "Archive"),
|
||||
("/categories/", "Tags"),
|
||||
("/rss.xml", "RSS feed"),
|
||||
("/", "Home"),
|
||||
('/who-we-are', 'About'),
|
||||
('/scholarship', 'Scholarship'),
|
||||
('/contact', 'Contact')
|
||||
),
|
||||
}
|
||||
|
||||
# Name of the theme to use.
|
||||
THEME = "bootstrap3"
|
||||
THEME = "custom"
|
||||
|
||||
# Primary color of your theme. This will be used to customize your theme and
|
||||
# auto-generate related colors in POSTS_SECTION_COLORS. Must be a HEX value.
|
||||
|
@ -171,7 +172,11 @@ POSTS = (
|
|||
("posts/*.rst", "posts", "post.tmpl"),
|
||||
("posts/*.txt", "posts", "post.tmpl"),
|
||||
("posts/*.html", "posts", "post.tmpl"),
|
||||
("posts/scholarship/*.rst", "scholarship", "post.tmpl"),
|
||||
("posts/scholarship/*.txt", "scholarship", "post.tmpl"),
|
||||
("posts/scholarship/*.html", "scholarship", "post.tmpl"),
|
||||
)
|
||||
|
||||
PAGES = (
|
||||
("pages/*.rst", "", "story.tmpl"),
|
||||
("pages/*.txt", "", "story.tmpl"),
|
||||
|
@ -188,7 +193,7 @@ PAGES = (
|
|||
# (e.g. 'Europe/Zurich')
|
||||
# Also, if you want to use a different time zone in some of your posts,
|
||||
# you can use the ISO 8601/RFC 3339 format (ex. 2012-03-30T23:00:00+02:00)
|
||||
TIMEZONE = "Europe/Paris"
|
||||
TIMEZONE = "America/New_York"
|
||||
|
||||
# If you want to use ISO 8601 (also valid RFC 3339) throughout Nikola
|
||||
# (especially in new_post), set this to True.
|
||||
|
@ -795,7 +800,8 @@ LICENSE = ""
|
|||
|
||||
# A small copyright notice for the page footer (in HTML).
|
||||
# (translatable)
|
||||
CONTENT_FOOTER = 'Contents © {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="https://getnikola.com" rel="nofollow">Nikola</a> {license}'
|
||||
CONTENT_FOOTER = 'Contents licensed under <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"> Creative Commons Attribution-ShareAlike 4.0 International License</a>, {date} | Email <a href="mailto:{email}">{author}</a>'
|
||||
|
||||
|
||||
# Things that will be passed to CONTENT_FOOTER.format(). This is done
|
||||
# for translatability, as dicts are not formattable. Nikola will
|
||||
|
|
Loading…
Reference in New Issue