Minimal static website generator written in Python
| content | Basic files | |
| output | Basic files | |
| theme | Adding docs | |
| advanced.md | Adding docs | |
| basic.py | Split | |
| modules.py | Split | |
| README.md | Adding docs | |
minpage : Minimalist static website generator.
This app has been created in Python and is the simplified version of Pelican.
Installation and minimum configuration
- Download the git repo
git clone https://gitea.com/chopin42/minpage
cd minpage
- Customize the
theme/base.htmlfile to add your navigation menu and your site's name.
Usage
-
Create a markdown file like
1-article.mdin the directorycontent/. The number is used to organize the articles. You can also put all the images and related content in this folder. -
Your article needs to be organized the following way:
{Title: Your Title here}
{Author: Your Name}
{Date: 12-12-12 12:12}
{Category: Your Category}
{Body}
You can write your *markdown* article **here**. 
- Run the following command:
./basic.py
Advanced configuration
You can find all the informations about the advanced configuration here.