XertDev / ash

Simple theme for pelican site generator

Home Page:http://ash-demo.xert.ct8.pl/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ash


Ash is a simple theme for the pelican static page generator. Layout is fully responsive and use mobile first approach.

Theme is designed without using Javascript (just HTML & CSS).

Features

  • Mobile first
  • Responsive design
  • No JS
  • OpenGraph support
  • Code highlight support
  • Pagination support
  • Support for RSS/ATOM feed
  • Customizable top menu & sidebar

Plugin support

Integrations

Install

  • Clone the repo
  • Set its location using THEME option in pelicanconf.py.
  • Provide font-awesome css via FONT_AWESOME_LINK

Configuration

#Font awesome
FONT_AWESOME_LINK = "https://url-to-font-awesome"

#### Sidebar

#Enable/disable sidebar
SIDEBAR = True 

#Custom sidebar sections
SIDEBAR_MODULES = ( "taglist.html", )

#Social icons (github, gitlab, linkedin, etc.)
SOCIAL = (
              ('github', 'https://github.com/some-account', 'fab fa-github fa-fw fa-lg'),
              ('gitlab', 'https://gitlab.com/some-account', 'fab fa-gitlab fa-fw fa-lg'),
     	 )

#### Top navbar

#Custom links
MENUITEMS = (
              ('Interesting page', 'https://url-to-interesting-page'),
     	 )

#### Other

#OpenGraph support
USE_OPEN_GRAPH = True

#Neighbors support (when neighbors plugin enabled)
PREV_NEXT_ENABLE = True

#Article custom footer
ARTICLE_CUSTOM_FOOTERS = ("isso_comments.html",)

#Isso URL (isso_comments article footer must be enabled)
ISSO_URL = "https://issourl"

Screenshots

Home page

Article

License

MIT © Xert

About

Simple theme for pelican site generator

http://ash-demo.xert.ct8.pl/

License:MIT License


Languages

Language:CSS 82.8%Language:HTML 17.2%