fossworx-labs / fossfolio

A blazingly fast, fully hackable static site generator built on Python 3.9 with Markdown and templating support, with minimal dependencies
https://fossworx-labs.github.io/fossfolio/
MIT License
30 stars 3 forks source link
documentation-generator html low-code lowcode markdown md python3 static-site-generator staticsite staticsitegenerator website

FOSSFolio

Fossfolio Logo

Codacy branch grade GitHub Repo stars GitHub forks GitHub repo size Lines of code Website

Fossfolio - Probably the simplest static site generator in the world! | Product Hunt

Probably the simplest static site generator in the world! (Yes, inspired from Carlsberg commercials šŸ˜œ)

About FOSSFolio

FOSSFolio is a Free and Open Source Software (FOSS) meant for developers to create their own static websites (mostly portfolios), with fine-grained control.

Intended Audience

Developers or coding enthusiasts who need a static site (maybe like a blog) with minimal effort.

Features

Screenshots

Console while building a demo site:

Build Screenshot File structure after building



Post rendered with default theme using the default.html mapping:

Sample page wrapped in default theme



Post rendered with blogtastic theme using the default.html mapping:

Sample page wrapped in blogtastic theme



Example of an auto-generated sitemap:

Auto-generated sitemap example

Getting started

The main objective of creating FOSSFolio was to avoid the different complexities imposed by other static site generator (like Hugo) that give you a lot of control, but have quite a learning curve. I really love Hugo, but sometimes it requires a lot of changes even to add/change some basic functionalities.

  1. Clone this repository
  2. Open the folder.
  3. Install poetry using pip install --upgrade poetry.
  4. Initialize poetry with poetry init
  5. Install dependencies with poetry install
  6. Navigate to fossfolio folder
  7. Clear all the files and subfolders in the assets and posts folder
  8. Put your own content in place of those
  9. Run python build.py
  10. The build folder will contain the generated static site.

Templating with FOSSFolio

There are two kinds of syntaxes for templating with FOSSFolio:

Plugin Templates

Plugins are the ad-hoc extensions in FOSSFolio. Plugin templates and their syntax are decided by the devs who write them - You have full control here!

Default Plugins:

I've given two default plugins for now:

Jinja templates (Under development)

You can use Jinja templates too. The context passing mechanism is under development.

Hacking around

Keeping the intended audience in mind, the USP of FOSSFolio is the degree of customization it offers. You can hack about just anything - the templates, the plugins - heck even the build.py is a small file that aggregates all the small modules into a default workflow - you can hack around that as well.

You can even integrate the modules and functionalities into other larger programs!

Plugin Development

A plugin can consist of anything, as long as it satisfies the following criteria:

  1. It has to act like a module (that is, it should have an __init__.py)
  2. It should have a main.py file that acts like a controller for other functionalities of the plugin.
  3. It should have a run method inside main.py, that will act as the controller method
  4. The run method should return a dictionary containing the field content which will contain the modified html code. (Be very careful at this step, since it may open your plugin to JS-based vulnerabilities. Any sanity checks are your responsibility - in exchange for maximum freedom with what you can do.)
  5. Your plugin should support pipelining (i.e., stacking plugins on top of another, getting the final output after passing through functions sequentially).

Some points you may want to keep in mind:

  1. Plugins are processed before wrapping the html code in the template. So you should be careful not to change any placeholder for Jinja while processing.
  2. Not a strict rule, but <%...%> style is pretty familiar to most developers around the world (thanks to JSP, EJS, etc). So you may want to keep placeholders in that format for better readability.

Additional Notes

Since FOSSfolio is based on Python-markdown under the hood, you can use the additional features of Python-markdown, that don't exist in the vanilla Markdown specifications. Some of those features are:

and so on.

For more extensions, you can check out the Extensions Glossary to supercharge Markdown!