Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Susty Pelican theme #671

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
674 changes: 674 additions & 0 deletions susty-pelican/LICENSE

Large diffs are not rendered by default.

84 changes: 84 additions & 0 deletions susty-pelican/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
Susty Pelican
=============
This is a port of the Susty_ Wordpress theme to be used
with the Pelican_ static site generator.

Demo
----
A `live demo`_ is available.

Screenshots
-----------
**Main page listing all posts:**

.. image:: images/main_page.jpg
:width: 300px
:alt: Main page

**Page with the site's navigation menu:**

.. image:: images/menu_page.jpg
:width: 300px
:alt: Page with the website's menu

**A blog post:**

.. image:: images/blog_post.jpg
:width: 300px
:alt: A blog post


How to use
----------
1. Download the `latest version`_ of the theme.
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

.. Links
.. _Eva Icons: https://github.com/akveo/eva-icons
.. _latest version: https://github.com/vimalkvn/susty-pelican/archive/master.zip
.. _live demo: https://vimalkvn.github.io/susty-pelican
.. _Pelican: https://github.com/getpelican/pelican
.. _Susty: https://github.com/jacklenox/susty
Binary file added susty-pelican/images/blog_post.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added susty-pelican/images/main_page.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added susty-pelican/images/menu_page.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions susty-pelican/static/globe-2-outline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading