Commit Graph

20 Commits

Author SHA1 Message Date
Steven Hall c3b8ff6455
Fix tag separator to allow hyphen separated tags like 'slow-cooked' (#386) 2021-03-21 21:15:01 -04:00
Steven Hall 88bf288b6f
Fixes duplicates on tag pages (#354) (#385) 2021-03-21 17:17:34 -04:00
Luke Smith b40f0f43af
fix #287 2021-03-21 08:37:45 -04:00
Luke Smith 70c33511d1
"Recipe" in title for soych engine optimization 2021-03-20 12:38:55 -04:00
Sylvain Gauthier 321bddab3b consolidate tag parsing
Allow punctuation signs to separate tags instead of just space
2021-03-17 13:50:41 +11:00
Luke Smith 673b2fcaa5
fix atom feed too 2021-03-16 22:25:56 -04:00
Luke Smith c33de03237
CDATA for html rss 2021-03-16 22:16:18 -04:00
Luke Smith d19ee79c56
use html via markdown in RSS 2021-03-16 22:11:56 -04:00
Harrison Wong 0190dd1636
fix rss links 2021-03-15 11:40:22 -04:00
Luke Smith c3287d9a19
responsive css: multi-column list on wide screens 2021-03-15 08:57:49 -04:00
Sylvain Gauthier 93e99588c6 fix RSS titles, put whole recipe in description 2021-03-15 18:51:16 +11:00
Sylvain Gauthier 455a6191f7 fix 2021-03-15 12:02:02 +11:00
Sylvain Gauthier b1c404456d add custom markdown index file 2021-03-15 10:48:41 +11:00
Sylvain Gauthier db9156fb36 sort articles by alphabetical order instead of date of publication 2021-03-15 10:36:14 +11:00
Sylvain Gauthier be0c2dd2ce get ready for merge 2021-03-15 10:36:14 +11:00
Sylvain Gauthier 05a1a7b5eb fix bug when article deleted and re-added later 2021-03-15 10:36:14 +11:00
Sylvain Gauthier d42399ae92 add list of tag links at the end of each recipe 2021-03-15 10:36:14 +11:00
Sylvain Gauthier 81ee1e91c4 add taglist function 2021-03-15 10:36:14 +11:00
Sylvain Gauthier 1d7d2b6ab8 fix
- Set correct title on pages (remove leading '#')
- Remove main title on recipe pages
- Put metadata at the end of articles
2021-03-15 10:35:05 +11:00
Sylvain Gauthier 9e99745276 use a clean Makefile system to build/deploy site
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
2021-03-15 10:34:59 +11:00