site

Personal site for Zane
Log | Files | Refs

commit c918dd9691fba35c41abd269c54355874fb622a2
parent 94dedacebbbd51d4ae3b21e3a7911769094d8584
Author: Zane Schaffer <znschaffer@gmail.com>
Date:   Fri, 16 Feb 2024 16:17:25 -0800

Add new photos page with some placeholder photos

Diffstat:
M.github/workflows/main.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -8,12 +8,12 @@ jobs: steps: - uses: actions/checkout@v3 - name: setup output dir and copy images - run: mkdir out; cp -r src/img out/; + run: mkdir out; cp -r src/img out/; cp src/c.css out/; - name: convert markdown to html 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 -H header.html -c c.css --embed-resources=true --katex -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 c.css -s ${0} -o ../out/${0%.md}.html' {} \;" - run: tree - name: Deploy