quatuorbellefeuille.com

Content, build scripts and admin scripts for the Bellefeuille Quartet website.
git clone https://git.kevinlegouguec.net/quatuorbellefeuille.com
Log | Files | Refs

commit 4ffcefe6afb58590754dc1f95da9452e9666376a
parent 55368ba1929a9174daf31f2a99ab2183404ba664
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Mon, 14 Dec 2020 00:17:59 +0100

Fix absent calendar icon

Diffstat:
MMakefile | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,8 @@ pages = $(wildcard *.html) sheets = $(wildcard *.css) -targets = $(foreach f,$(pages) $(sheets),public/$(f)) +images = $(wildcard *.svg) +resources = $(pages) $(sheets) $(images) +targets = $(foreach f,$(resources),public/$(f)) .PHONY: all clean site