summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeLines
* fix #287Luke Smith2021-03-21-1/+1
|
* "Recipe" in title for soych engine optimizationLuke Smith2021-03-20-1/+1
|
* consolidate tag parsingSylvain Gauthier2021-03-17-1/+1
| | | | Allow punctuation signs to separate tags instead of just space
* fix atom feed tooLuke Smith2021-03-16-2/+2
|
* CDATA for html rssLuke Smith2021-03-16-1/+1
|
* use html via markdown in RSSLuke Smith2021-03-16-1/+1
|
* fix rss linksHarrison Wong2021-03-15-5/+5
|
* responsive css: multi-column list on wide screensLuke Smith2021-03-15-1/+1
|
* fix RSS titles, put whole recipe in descriptionSylvain Gauthier2021-03-15-4/+4
|
* fixSylvain Gauthier2021-03-15-1/+1
|
* add custom markdown index fileSylvain Gauthier2021-03-15-1/+2
|
* sort articles by alphabetical order instead of date of publicationSylvain Gauthier2021-03-15-2/+2
|
* get ready for mergeSylvain Gauthier2021-03-15-1/+1
|
* fix bug when article deleted and re-added laterSylvain Gauthier2021-03-15-5/+6
|
* add list of tag links at the end of each recipeSylvain Gauthier2021-03-15-1/+8
|
* add taglist functionSylvain Gauthier2021-03-15-1/+4
|
* fixSylvain Gauthier2021-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 siteSylvain Gauthier2021-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