Got the new sidebar done

This commit is contained in:
Connor Johnstone
2023-12-10 18:07:40 -07:00
parent 7ec6b46e81
commit 72801f59bb
3 changed files with 140 additions and 135 deletions

View File

@@ -1,5 +1,5 @@
TEX = xelatex
src = single_page.tex colors.yaml
src = single_page.tex colors.yaml logo.png
PRIMARY = $(shell yq e .primary colors.yaml)
SECONDARY = $(shell yq e .secondary colors.yaml)
TERTIARY = $(shell yq e .tertiary colors.yaml)
@@ -12,6 +12,9 @@ single_page.pdf : $(src)
-e "s/\$$text/$(TEXT)/g" \
single_page.tex > single_page_src.tex
$(TEX) -o $(FLAGS) single_page_src.tex
mv single_page_src.pdf single_page.pdf
rm single_page_src.*
rm *.log
.PHONY: clean
clean :