Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | fix #287 | Luke Smith | 2021-03-21 | -1/+1 |
| | ||||
* | "Recipe" in title for soych engine optimization | Luke Smith | 2021-03-20 | -1/+1 |
| | ||||
* | consolidate tag parsing | Sylvain Gauthier | 2021-03-17 | -1/+1 |
| | | | | Allow punctuation signs to separate tags instead of just space | |||
* | fix atom feed too | Luke Smith | 2021-03-16 | -2/+2 |
| | ||||
* | CDATA for html rss | Luke Smith | 2021-03-16 | -1/+1 |
| | ||||
* | use html via markdown in RSS | Luke Smith | 2021-03-16 | -1/+1 |
| | ||||
* | fix rss links | Harrison Wong | 2021-03-15 | -5/+5 |
| | ||||
* | responsive css: multi-column list on wide screens | Luke Smith | 2021-03-15 | -1/+1 |
| | ||||
* | fix RSS titles, put whole recipe in description | Sylvain Gauthier | 2021-03-15 | -4/+4 |
| | ||||
* | fix | Sylvain Gauthier | 2021-03-15 | -1/+1 |
| | ||||
* | add custom markdown index file | Sylvain Gauthier | 2021-03-15 | -1/+2 |
| | ||||
* | sort articles by alphabetical order instead of date of publication | Sylvain Gauthier | 2021-03-15 | -2/+2 |
| | ||||
* | get ready for merge | Sylvain Gauthier | 2021-03-15 | -1/+1 |
| | ||||
* | fix bug when article deleted and re-added later | Sylvain Gauthier | 2021-03-15 | -5/+6 |
| | ||||
* | add list of tag links at the end of each recipe | Sylvain Gauthier | 2021-03-15 | -1/+8 |
| | ||||
* | add taglist function | Sylvain Gauthier | 2021-03-15 | -1/+4 |
| | ||||
* | fix | Sylvain Gauthier | 2021-03-15 | -3/+9 |
| | | | | | | - Set correct title on pages (remove leading '#') - Remove main title on recipe pages - Put metadata at the end of articles | |||
* | use a clean Makefile system to build/deploy site | Sylvain Gauthier | 2021-03-15 | -0/+180 |
This way, we get dependency/smart update for free. We don't need to rebuild all the pages everytime a new one is added. The author, date of creation and date of revision are extracted from git information. The index is generated automatically, so adding a recipe is literally just adding a markdown file in src/. The deployment system uses rsync to push only newer data to the server. There is a tag system that you can add at the end of each recipe file. Tag pages are generated statically that contain all recipes with a given tag. It introduces more HTML template files, though. To build website, type make build To deploy it, make deploy To clean everything, make clean |