|
@ -2,33 +2,18 @@ |
|
|
|
|
|
|
|
|
> https://varia.zone |
|
|
> https://varia.zone |
|
|
|
|
|
|
|
|
## Pelican |
|
|
## Getting Started |
|
|
|
|
|
|
|
|
The Varia website is made with Pelican, a static site generator written in |
|
|
### Clone |
|
|
Python. This means that the website is first generated on a computer (using |
|
|
|
|
|
Python, Jinja and Pelican) into a set of html pages, files and images. This set |
|
|
|
|
|
of documents is then uploaded to the server. |
|
|
|
|
|
|
|
|
|
|
|
One of the things that Pelican uses is _plugins_. They are used to add extra |
|
|
|
|
|
features to the generation process of the website. |
|
|
|
|
|
|
|
|
|
|
|
In this repository there is a folder called 'plugins' and another one called |
|
|
|
|
|
'plugins-custom'. |
|
|
|
|
|
|
|
|
|
|
|
The first one, 'plugins', is linked to the offical collection of plugins from |
|
|
|
|
|
the Pelican project '[pelican-plugins](https://github.com/getpelican/pelican-plugins/)'. |
|
|
|
|
|
|
|
|
|
|
|
The other one, 'plugins-custom', consists of plugins that we wrote ourself. |
|
|
|
|
|
|
|
|
|
|
|
## Clone |
|
|
|
|
|
|
|
|
|
|
|
To clone both the varia.website and pelican-plugins repository, add the --recurse-submodules option in your git clone command: |
|
|
|
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
$ git clone https://git.vvvvvvaria.org/varia/varia.website.git --recurse-submodules |
|
|
$ git clone https://git.vvvvvvaria.org/varia/varia.website.git |
|
|
|
|
|
$ cd varia.website |
|
|
|
|
|
$ git clone https://github.com/getpelican/pelican-plugins/ |
|
|
|
|
|
$ git clone https://git.vvvvvvaria.org/varia/plugins-custom |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
## Install |
|
|
### Install |
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
$ python3 -m venv .venv |
|
|
$ python3 -m venv .venv |
|
@ -36,7 +21,7 @@ $ source .venv/bin/activate |
|
|
$ pip install -r requirements.txt |
|
|
$ pip install -r requirements.txt |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
## Start |
|
|
### Serve |
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
$ pelican --autoreload |
|
|
$ pelican --autoreload |
|
@ -44,20 +29,23 @@ $ pelican --autoreload |
|
|
|
|
|
|
|
|
Visit the website at [localhost:8000](http://localhost:8000) |
|
|
Visit the website at [localhost:8000](http://localhost:8000) |
|
|
|
|
|
|
|
|
## Update submodules |
|
|
## Tools |
|
|
|
|
|
|
|
|
We are currently using two submodules: |
|
|
The Varia website is made with Pelican, a static site generator written in |
|
|
|
|
|
Python. This means that the website is first generated on a computer (using |
|
|
- pelican-plugins ([https://github.com/getpelican/pelican-plugins](https://github.com/getpelican/pelican-plugins)) |
|
|
Python, Jinja and Pelican) into a set of html pages, files and images. This set |
|
|
- plugins-custom ([https://git.vvvvvvaria.org/varia/plugins-custom](https://git.vvvvvvaria.org/varia/plugins-custom)) |
|
|
of documents is then uploaded to the server. |
|
|
|
|
|
|
|
|
To update these submodules within your (already) cloned repository, first init the submodule, and then update it: |
|
|
One of the things that Pelican uses is _plugins_. They are used to add extra |
|
|
|
|
|
features to the generation process of the website. |
|
|
|
|
|
|
|
|
cd /path/to/submodule |
|
|
In this repository there is a folder called 'plugins' and another one called |
|
|
|
|
|
'plugins-custom'. |
|
|
|
|
|
|
|
|
git submodule init |
|
|
The first one, 'plugins', is linked to the offical collection of plugins from |
|
|
|
|
|
the Pelican project '[pelican-plugins](https://github.com/getpelican/pelican-plugins/)'. |
|
|
|
|
|
|
|
|
git submodule update |
|
|
The other one, 'plugins-custom', consists of plugins that we wrote ourself. |
|
|
|
|
|
|
|
|
## Posting Content |
|
|
## Posting Content |
|
|
|
|
|
|
|
@ -77,7 +65,6 @@ that each article contains at least the following at the top of the document: |
|
|
featured_image: /images/image.png |
|
|
featured_image: /images/image.png |
|
|
|
|
|
|
|
|
Articles are written in a markup language called markdown. |
|
|
Articles are written in a markup language called markdown. |
|
|
|
|
|
|
|
|
[Here](https://daringfireball.net/projects/markdown/syntax) is an overview of |
|
|
[Here](https://daringfireball.net/projects/markdown/syntax) is an overview of |
|
|
the syntax. You can also use the online editor in this Gitea interface to help |
|
|
the syntax. You can also use the online editor in this Gitea interface to help |
|
|
you. |
|
|
you. |
|
|