commit 6f285a14d82db70d486e339bb0848230907e7009 parent 083cc306933a312fe8f5821dc1de403df76e538f Author: Zane Schaffer <znschaffer@gmail.com> Date: Tue, 2 Jan 2024 19:44:54 -0800 add header Diffstat:
| M | .github/workflows/main.yml | | | 5 | ++--- |
| A | src/header.html | | | 8 | ++++++++ |
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -13,13 +13,12 @@ jobs: uses: docker://pandoc/core:edge with: entrypoint: /bin/sh - args: -c "cd src; find . -iname '*.md' -type f -exec sh -c 'pandoc -f markdown -t html5 -c normalize.css -c fonts/font.css -c concrete.css -s ${0} -o ../out/${0%.md}.html' {} \;" + args: -c "cd src; find . -iname '*.md' -type f -exec sh -c 'pandoc -f markdown -t html5 -H header.html -c normalize.css -c fonts/font.css -c concrete.css -s ${0} -o ../out/${0%.md}.html' {} \;" - run: tree - + - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./out cname: znschaffer.com - diff --git a/src/header.html b/src/header.html @@ -0,0 +1,8 @@ +<meta + name="description" + content="Zane Schaffer's Lovely Indescribable Information and Tasty Site" +/> +<link + rel="icon" + href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>↔</text></svg>" +/>