Projects list is read from PROJECTS
in your Pelican configuration
(pelicanconf.py
) file. It is an array of dictionaries. Each
dictionary has three keys,
name
which will have name of your project,url
which will have URL of the project, anddescription
which will have the description of the project.
You can define as many projects as you want. Here is an example,
1 2 3 4 5 6 7 8 9 |
|
To configure the projects’ list title, set PROJECTS_TITLE
variable in your Pelican configuration. Its default value is “My Projects”. For example,
PROJECTS_TITLE = "Related Projects"