Starter project / proof of concept for a simple, or "micro" Content Management System (CMS) combined with a Static Site Generator (SSG).
- Simple back office built on top of Django Admin with some enhancements
- Static site generation using django-distill
- Multi-site support
- Automatically manages role groups and permissions for individual sites
- Automatically pushes generated sites to Git on updates
- Image optimization
This was created with a web agency in mind, building sites for several different clients. Whether what it provides is a CMS is debatable and depends on your defintion of CMS. It attempts to provide something more like KeyStoneJS than Wordpress.
It's based on the following premises:
- Clients typically want to do minimal updates (e.g. changing information, adding new items).
- Overloading nontechnical users with too many options makes them averse to doing any updates at all.
- A monolithic system where the CMS and SSG are unified has less cognitive overhead for developers than a system where they are separate parts connected by GraphQL or some other API.
- The Python/Django ecosystem is powerful enough to rival popular SSGs like Gatsby and NextJS.
- Projects like petite-vue make it natural to sprinkle reactive components onto a server-rendered (or in this case statically generated) page, similar to the Islands Architecture idea.
The starter kit comes with two demo sites, which are published here:
A Dockerfile is provided that does the setup for you. Run this command to build and run the container:
bash docker/run.sh
This script will install all dependencies and setup the database.
Note: It doesn't create a virtual environment so you should do that if you want.
bash scripts/init.sh
In the Admin UI you can set the Git repo and the root URL for build. Sites are added to this menu automatically when added to the SITES list in config.py
There are no users or login credentials created by default. Create accounts in Django as you would normally.
Groups are automatically created for each site in the SITES list. To give a user access to control a site, simply add them to the group and they automatically get all permissions associated with that site.
If there is a Git repository configured for the site it will automatically push after some number of minutes since the last update made. After that it's the usual process of deploying to GitHub Pages, Netlify, Vercel, or wherever else you'd host a static site.
The Git push assumes you're using SSH and you have your SSH public key configured. The Docker script also does SSH agent forwarding so i'll work inside the container.
To see the build in action without triggering the auto publish,
you can use the publish
command:
./manage.py publish --site=mars
./manage.py publish --site=venus
An image
tag is provided for use in templates.
It automatically resizes images in multiple sizes and generates
a WEBP version which is served to supported browsers.
The tag is built on top of
sorl-thumbnail.
{% load dmcs %}
{% image album.image.url alt="{{album.title}}" %}
{% size 160x160 %}
{% size 320x320 640px %}
{% size 640x640 1280px %}
{% endimage %}
name | requred | description |
---|---|---|
alt | ✓ | img tag alt attribute |
style | HTML style attribute |
|
class | HTML class attribute |
Also any options
for sorl-thumbnail's thumbnail
tag
like crop
, quality
, etc. are passed through.
An image
tag can contain any number of size
tags:
{% size <geometry> <min-width> %}
name | requred | description |
---|---|---|
geometry | ✓ | Width by height in pixels |
min-width | Similar to a media query; this image size will be used if the viewport is at least this wide. |