项目作者: Alysha-94

项目描述 :
A custom theme I made for Pelican Static Site Generator
高级语言: CSS
项目地址: git://github.com/Alysha-94/pelican-theme.git
创建时间: 2019-07-09T07:08:38Z
项目社区:https://github.com/Alysha-94/pelican-theme

开源协议:

下载


Pelican Theme

A custom theme I made for Pelican static site generator using the Jinja templating engine, CSS and JavaScript.

To try this theme

Clone this repository into the main folder of your pelican site, the structure should look something like this:

  1. └── yourproject
  2. ├── Makefile
  3. ├── content
  4. └── (pages)
  5. ├── pelican-theme
  6. ├── static
  7. ├── css
  8. └── (css files)
  9. └── js
  10. └── (js files)
  11. └── templates
  12. └── (custom templates)
  13. ├── output
  14. └── (output files)
  15. ├── pelicanconf.py
  16. ├── publishconf.py.txt
  17. └── tasks.py

Edit your Pelican settings file (pelicanconf.py) to look for the theme:

  1. THEME = 'pelican-theme'

Save the changes to your settings file and then regenerate your site:

  1. make html