|
@@ -27,6 +27,7 @@ LIST_GEN := yq eval-all '{"data": ., "target": {"content": filename | sub("meta.
|
|
|
|
|
|
# Functions
|
|
|
extract_category = $(word 2, $(subst /, ,$(1)))
|
|
|
+extract_update_date = $(shell git log -1 --pretty="format:%cs" $(1))
|
|
|
|
|
|
# Build
|
|
|
.PHONY: build
|
|
@@ -34,17 +35,17 @@ build: $(GEN_CONTENT_FILES)
|
|
|
$(info HTML generated)
|
|
|
|
|
|
%.gen.html: %.src.html %.meta.yml $(SRC_TEMPLATES)
|
|
|
- $(PANDOC_GEN) --metadata-file $*.meta.yml --metadata=category-$(call extract_category,$*) --output $@ $<
|
|
|
+ $(PANDOC_GEN) --metadata-file $*.meta.yml --metadata=category-$(call extract_category,$*) --metadata=update-date:$(call extract_update_date,$<) --output $@ $<
|
|
|
|
|
|
%.gen.html: %.src.md %.meta.yml $(SRC_TEMPLATES)
|
|
|
- $(PANDOC_GEN) --metadata-file $*.meta.yml --metadata=category-$(call extract_category,$*) --output $@ $<
|
|
|
+ $(PANDOC_GEN) --metadata-file $*.meta.yml --metadata=category-$(call extract_category,$*) --metadata=update-date:$(call extract_update_date,$<) --output $@ $<
|
|
|
|
|
|
# Build lists
|
|
|
$(GEN_LIST_YML): $(SRC_LIST_YML)
|
|
|
$(LIST_GEN) $(SRC_LIST_YML) > $@
|
|
|
|
|
|
$(DIR_OF_PROJECTS)/content.gen.html: $(DIR_OF_PROJECTS)/content.src.html $(DIR_OF_PROJECTS)/content.meta.yml $(GEN_LIST_YML) $(SRC_TEMPLATES)
|
|
|
- $(PANDOC_GEN) --metadata-file $(DIR_OF_PROJECTS)/content.meta.yml --metadata-file $(GEN_LIST_YML) --metadata=category-projets --output $@ $<
|
|
|
+ $(PANDOC_GEN) --metadata-file $(DIR_OF_PROJECTS)/content.meta.yml --metadata-file $(GEN_LIST_YML) --metadata=category-projets --metadata=update-date:$(call extract_update_date,$<) --output $@ $<
|
|
|
|
|
|
# Distribution
|
|
|
.PHONY: dist
|