Skip to content

limbenjamin/voce

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

voce theme for Pelican

voce is a responsive theme for Pelican. It was templated on pelican-svbhack by Giulio Fidente. It is lightweight and suitable for text heavy articles.

Demo

You can see the theme in action on my site

theme screenshot

Features

  • Clean, responsive design. Scales to fit any screen
  • Fully usable without Javascript (although enabling it adds more functionality)
  • Syntax highlighting for code blocks
  • Integrated Google Analytics
  • Custom sidebar links and social icons
  • Zero plugins/python dependencies. Easy install process.

Installing

  1. Clone this repository (ex: git clone https://github.com/limbenjamin/voce)
  2. Modify the following variable in pelicanconf.py.
THEME = './themes/voce/'                          # make sure path points to folder where you cloned the theme
DEFAULT_DATE_FORMAT = "%b %d, %Y"                 # short date format, optional but recommended 
USER_LOGO_URL = "http://i.imgur.com/zzCRZUH.jpg"  # change URL to point to desired logo for site
  1. That's all.

pelicanconf.py

This theme supports a number of custom variables:

  • GOOGLE_ANALYTICS_ID: Your Google Analytics UA-XXXXXXXX-X code (None to disable analytics).
  • GOOGLE_ANALYTICS_PROP: Your Google Analytics property name (None to disable analytics).
  • USER_LOGO_URL: The image to display in the center of the page. Can be local or a remote URL.
  • MANGLE_EMAILS: If enabled, any emails in the SOCIAL or LINKS lists will be obfuscated in HTML and have their links generated by Javascript when the page loads.
  • GLOBAL_KEYWORDS: A list of strings that will be set as meta keywords for each page.

The following variables are required in pelicanconf.py to display the submenu with article categories.

  • TAGS_URL = 'tags.html'
  • ARCHIVES_URL = 'archives.html'

Sample Links and Social Widget

LINKS = (('Home','/index.html'),
('About','/pages/about.html'),)

SOCIAL = (('Feed','/feeds/all.atom.xml'),
('Email','mailto:xxx@gmail.com'),
('GitHub','http://github.com/limbenjamin'),)

Social Icons

voce uses social icons from font-awesome. To customise the icons, you will need to edit base.html. Change the link to the domain you wish to link to and look up the class name from font-awesome.

{% elif temp.startswith('mailto:') %}{% set class = 'fa-envelope' %}
{% elif temp.startswith('facebook.com') %}{% set class = 'fa-facebook' %}
{% elif temp.startswith('flickr.com') %}{% set class = 'fa-flickr' %}

Authors

pelican-subtle is authored by pR0Ps.

pelican-svbhack is authored by Giulio Fidente.

voce is authored by Benjamin Lim.

Pull requests welcome!

Licence

The MIT License (MIT)
Copyright (c) 2012 William Ting
Copyright (c) 2013 Giulio Fidente
Copyright (c) 2015 Carey Metcalfe
Copyright (c) 2016 Benjamin Lim

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

About

voce theme for pelican CMS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published