Cambiate impostazioni di pubblicazione.
This commit is contained in:
parent
6788b5ea00
commit
90a9d9dc07
|
@ -48,11 +48,6 @@ DISPLAY_CATEGORIES_ON_MENU = False
|
||||||
THEME = 'themes/pelican-blue'
|
THEME = 'themes/pelican-blue'
|
||||||
DISPLAY_FOOTER = False
|
DISPLAY_FOOTER = False
|
||||||
|
|
||||||
# Blue Penguin theme
|
|
||||||
#THEME = 'themes/blue-penguin'
|
|
||||||
#DISPLAY_HOME = False
|
|
||||||
#FOOTER = "Contenuti rilasciati con licenza CC-SA-BY 4.0"
|
|
||||||
|
|
||||||
# Feed generation is usually not desired when developing
|
# Feed generation is usually not desired when developing
|
||||||
FEED_ALL_ATOM = None
|
FEED_ALL_ATOM = None
|
||||||
CATEGORY_FEED_ATOM = None
|
CATEGORY_FEED_ATOM = None
|
||||||
|
@ -60,15 +55,6 @@ TRANSLATION_FEED_ATOM = None
|
||||||
AUTHOR_FEED_ATOM = None
|
AUTHOR_FEED_ATOM = None
|
||||||
AUTHOR_FEED_RSS = None
|
AUTHOR_FEED_RSS = None
|
||||||
|
|
||||||
# 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', '#'),)
|
|
||||||
|
|
||||||
# Social widget
|
|
||||||
#SOCIAL = (('You can add links in your config file', '#'),
|
|
||||||
# ('Another social link', '#'),)
|
|
||||||
SOCIAL = (
|
SOCIAL = (
|
||||||
('fas fa-home', 'https://libreitalia.org'),
|
('fas fa-home', 'https://libreitalia.org'),
|
||||||
('fab fa-twitter', 'http://twitter.com/libreitalia'),
|
('fab fa-twitter', 'http://twitter.com/libreitalia'),
|
||||||
|
|
|
@ -10,15 +10,18 @@ sys.path.append(os.curdir)
|
||||||
from pelicanconf import *
|
from pelicanconf import *
|
||||||
|
|
||||||
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
||||||
SITEURL = ''
|
SITEURL = 'https://conference.libreitalia.org'
|
||||||
RELATIVE_URLS = False
|
RELATIVE_URLS = False
|
||||||
|
|
||||||
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
FEED_ALL_ATOM = None
|
||||||
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
|
CATEGORY_FEED_ATOM = None
|
||||||
|
TRANSLATION_FEED_ATOM = None
|
||||||
|
AUTHOR_FEED_ATOM = None
|
||||||
|
AUTHOR_FEED_RSS = None
|
||||||
|
|
||||||
DELETE_OUTPUT_DIRECTORY = True
|
DELETE_OUTPUT_DIRECTORY = True
|
||||||
|
|
||||||
# Following items are often useful when publishing
|
# Following items are often useful when publishing
|
||||||
|
|
||||||
#DISQUS_SITENAME = ""
|
#DISQUS_SITENAME = ""
|
||||||
#GOOGLE_ANALYTICS = ""
|
#GOOGLE_ANALYTICS = ""
|
||||||
|
|
Loading…
Reference in New Issue