diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-03-14 21:07:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 21:07:46 -0400 |
commit | 10ffebf2b48fc3de3dd19731195609b8cc4416a4 (patch) | |
tree | f54b7e15fd73678a574adfc0a07432407c3e1085 | |
parent | dba862393688f6fe151ef2659888629c2387e743 (diff) | |
parent | 455a6191f7d0f899c8e7eb24e60394c4de6e9546 (diff) | |
download | based.cooking-10ffebf2b48fc3de3dd19731195609b8cc4416a4.tar based.cooking-10ffebf2b48fc3de3dd19731195609b8cc4416a4.tar.gz based.cooking-10ffebf2b48fc3de3dd19731195609b8cc4416a4.tar.lz based.cooking-10ffebf2b48fc3de3dd19731195609b8cc4416a4.tar.xz based.cooking-10ffebf2b48fc3de3dd19731195609b8cc4416a4.zip |
Merge pull request #162 from sylGauthier/syg/master
fix
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,8 +93,8 @@ blog/index.html: index.md $(ARTICLES) $(TAGFILES) $(addprefix templates/,$(addsu envsubst < templates/article_entry.html; \ first=false; \ done >> $@; \ - markdown < index.md >> $@; \ envsubst < templates/article_list_footer.html >> $@; \ + markdown < index.md >> $@; \ envsubst < templates/index_footer.html >> $@; \ envsubst < templates/footer.html >> $@; \ |