flex/docs/publishconf.py

32 lines
596 B
Python
Raw Permalink Normal View History

2018-01-13 04:31:08 +01:00
import os
import sys
sys.path.append(os.curdir)
2020-09-19 20:06:47 +02:00
try:
from pelicanconf import *
except ImportError:
sys.path.append(os.path.join(os.curdir, "docs"))
from pelicanconf import *
2018-01-13 04:31:08 +01:00
2020-09-19 22:04:09 +02:00
SITEURL = "https://flex.alxd.me/"
2020-04-20 23:38:29 +02:00
2018-01-13 04:31:08 +01:00
RELATIVE_URLS = False
2020-04-20 23:38:29 +02:00
2018-01-13 04:31:08 +01:00
USE_LESS = False
2020-04-20 23:38:29 +02:00
2018-01-13 04:43:11 +01:00
GOOGLE_ANALYTICS = "UA-55543164-6"
2020-04-20 23:38:29 +02:00
GOOGLE_ADSENSE = {
2020-09-19 22:04:09 +02:00
"ca_id": "ca-pub-6625957038449899",
"page_level_ads": True,
"ads": {
"aside": "8752710348",
"main_menu": "",
"index_top": "",
"index_bottom": "1124188687",
"article_top": "",
"article_bottom": "4843941849",
},
2020-04-20 23:38:29 +02:00
}