1
Fork 0
This commit is contained in:
Jake Howard 2016-06-17 17:26:45 +01:00
parent ca3420fbc5
commit 2e2faae9c0
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 1 additions and 8 deletions

View file

@ -22,14 +22,9 @@ USE_FOLDER_AS_CATEGORY = True
DEFAULT_PAGINATION = False DEFAULT_PAGINATION = False
SLUGIFY_SOURCE = 'basename' SLUGIFY_SOURCE = 'basename'
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
('You can modify those links in your config file', '#'),)
# Social widget # Social widget
import links import links
ACCOUNTS = links.accounts()
FOOTER_LINKS = links.footer() FOOTER_LINKS = links.footer()
INDEX_PROJECTS = links.index_projects() INDEX_PROJECTS = links.index_projects()

View file

@ -1,8 +1,6 @@
from collections import namedtuple from collections import namedtuple
from random import shuffle from random import shuffle
SocialLink = namedtuple("SocialLink", ["name", "url", "icon"])
ProjectLink = namedtuple("ProjectLink", ["name", "url", "image"]) ProjectLink = namedtuple("ProjectLink", ["name", "url", "image"])
Account = namedtuple("Account", ["name", "url", "icon", "username"]) Account = namedtuple("Account", ["name", "url", "icon", "username"])