Susty Pelican

Menu
Theme

Susty Pelican — a port of the Wordpress Susty theme

❘ Vimalkumar Velayudhan

About this theme

This is a Pelican port of Susty Wordpress theme created by Jack Lenox.

How to use

  1. Download the latest version of the theme from GitHub.

  2. Extract the zip archive to a subdirectory within your Pelican project, for example, under themes/susty-pelican:

    your-pelican-project
    │
    ├── content
    │   └── index.rst
    ├── Makefile
    ├── pelicanconf.py
    ├── publishconf.py
    ├── tasks.py
    ├── themes
        └── susty-pelican
            ├── README.rst
            ├── static
            └── templates
    
  3. Update pelicanconf.py to use the new theme:

    THEME = 'themes/susty-pelican'
    
  4. If you like to add pages to the site's navigation menu, add to pelicanconf.py:

    TEMPLATE_PAGES = {'menu.html': 'menu.html'}
    

    Then add all your pages to the MENUITEMS variable in pelicanconf.py, for example:

    MENUITEMS = (
        ('Home', 'https://vimalkvn.github.io/susty-pelican'),
        ('GitHub', 'https://github.com/vimalkvn/susty-pelican')
    )
    

Credits

  • Susty Wordpress theme by Jack Lenox.
  • Theme icon is from the Eva Icons project.
  • Templates are from the Pelican builtin theme.

License

GPL v3