diff --git a/pelicanconf.py b/pelicanconf.py index 2ee4b83..4e6d4e0 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -1,9 +1,11 @@ -AUTHOR = 'SM' -SITENAME = 'SM Blog' -SITEURL = "" +AUTHOR = 'SolarMonitor Team' +SITENAME = 'SolarMonitor Blog' +# SITEURL = 'https://blog.solarmonitor.org' PATH = "content" +# THEME = "simple" + TIMEZONE = 'Europe/Dublin' DEFAULT_LANG = 'en' @@ -15,18 +17,18 @@ AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None +MENUITEMS = () + # Blogroll LINKS = ( - ("Pelican", "https://getpelican.com/"), - ("Python.org", "https://www.python.org/"), - ("Jinja2", "https://palletsprojects.com/p/jinja/"), - ("You can modify those links in your config file", "#"), + ("SolarMonitor", "https://solarmonitor.org"), + ("SolarMonitor2.0", "https://test.solarmonitor.org"), ) # Social widget SOCIAL = ( - ("You can add links in your config file", "#"), - ("Another social link", "#"), + ("Twitter", "https://twitter.com/SolarMonitororg"), + ("GitHub", "https://github.com/SolarMonitor"), ) DEFAULT_PAGINATION = 10 diff --git a/publishconf.py b/publishconf.py index a55b933..071882e 100644 --- a/publishconf.py +++ b/publishconf.py @@ -8,7 +8,7 @@ from pelicanconf import * # If your site is available via HTTPS, make sure SITEURL begins with https:// -SITEURL = "https://solarmonitor.github.io/blog" +SITEURL = "https://blog.solarmontor.org" RELATIVE_URLS = False FEED_ALL_ATOM = "feeds/all.atom.xml"