MinimalXY Pelican theme is extended from minimalX by art1fa.
I made some improvements, polishing and SEO optimization. The main purpose of this fork is to keep everything simple and focus on content. I removed all unnecessary parts. You can see this theme live here: blog.petrnohejl.cz.
- Minimal flat design
- Good usability, simple & intuitive navigation
- Focus on what's really important – your articles
- Presented in a clean and straightforward way
- Fully responsive and mobile-first
- Comments via Disqus integration
- Social media buttons
- W3.CSS CSS framework & HTML5 semantics
# Theme
THEME = '/path/to/MinimalXY'
# Theme customizations
MINIMALXY_CUSTOM_CSS = 'static/custom.css'
MINIMALXY_FAVICON = 'favicon.ico'
MINIMALXY_START_YEAR = 2009
MINIMALXY_CURRENT_YEAR = date.today().year
# Author
AUTHOR_INTRO = u'Hello world! I’m John Doe.'
AUTHOR_DESCRIPTION = u'Hello world! I’m John Doe. I like coffee, birds and Python.'
AUTHOR_AVATAR = 'http://www.gravatar.com/avatar/abcdefghijkl?s=240'
AUTHOR_WEB = 'http://mypersonalsite.com'
# Services
GOOGLE_ANALYTICS = 'UA-12345678-9'
DISQUS_SITENAME = 'johndoe'
# Social
SOCIAL = (
('facebook', 'http://www.facebook.com/johndoe'),
('twitter', 'http://twitter.com/johndoe'),
('github', 'https://github.com/johndoe'),
('linkedin', 'http://www.linkedin.com/in/johndoe'),
)
# Menu
MENUITEMS = (
('Categories', '/' + CATEGORIES_SAVE_AS),
('Archive', '/' + ARCHIVES_SAVE_AS),
)
Follow the Pelican documentation for more info or check the code of my personal blog.