|
1 | 1 | import logging |
2 | 2 |
|
3 | 3 | SITENAME = "aio-libs" |
4 | | -# PROBABLY WANT TO DO SOMETHING WITH SITEURL SAM |
5 | | -SITEURL = "http://127.0.0.1:8000/" |
| 4 | +SITEURL = "" |
6 | 5 | SUMMARY_MAX_PARAGRAPHS = 1 |
7 | 6 |
|
8 | 7 | ARTICLE_PATHS = ("news",) |
|
11 | 10 | LOCALE = "en_US.utf8" |
12 | 11 | TIMEZONE = "UTC" |
13 | 12 |
|
| 13 | +SPONSORS = ( |
| 14 | + ("Bill Gates", "http://google.com"), |
| 15 | + ("TerenceCorp", "http://google.com") |
| 16 | +) |
| 17 | + |
14 | 18 | # URL settings |
15 | 19 | FILENAME_METADATA = r"(?P<date>\d{4}-\d{2}-\d{2})_(?P<slug>.*)" |
16 | 20 | ARTICLE_URL = "news/{date:%Y}/{slug}/" |
|
44 | 48 |
|
45 | 49 | # Theme |
46 | 50 | THEME = "theme/" |
47 | | -THEME_STYLESHEET_URL = "/theme/css/aio-libs-theme.css" |
48 | | -THEME_USE_HIGHLIGHT = True |
49 | | - |
50 | | -DISPLAY_PAGES_ON_MENU = True |
51 | | -DISPLAY_CATEGORIES_ON_MENU = True |
52 | | -DISPLAY_SPONSORS_ON_MENU = True |
53 | | -SPONSORS = [ |
54 | | - ("Bill Gates", 'http://google.com'), |
55 | | - ("TerenceCorp", 'http://google.com') |
56 | | -] |
57 | | -DISPLAY_LINKS_ON_MENU = True |
58 | 51 | LINKS = ( |
59 | 52 | ("Pelican", "https://getpelican.com/"), |
60 | 53 | ("Python.org", "https://www.python.org/"), |
61 | 54 | ("Jinja2", "https://palletsprojects.com/p/jinja/") |
62 | 55 | ) |
63 | | - |
64 | 56 | SOCIAL = ( |
65 | 57 | ("You can add links in your config file", "#"), |
66 | 58 | ("Another social link", "#"), |
|
0 commit comments