Compare commits

..

No commits in common. "b7325dfe07a06e8fb5c1e764730a3efe7caf416b" and "d31ef3882df6cfe63d73df3462754e9f21f7becf" have entirely different histories.

3 changed files with 4 additions and 9 deletions

View file

@ -1,16 +1,15 @@
&root = . &root = .
&build_root = build
HTML_TEMPLATE = main.html HTML_TEMPLATE = main.html
!html = | &(root)/templates/footer.html \ !html = | &(root)/templates/footer.html \
|> ^b html %f^ \ |> ^ html %f^ \
pandoc --from markdown --to html \ pandoc --from markdown --to html \
--template=&(root)/templates/$(HTML_TEMPLATE) \ --template=&(root)/templates/$(HTML_TEMPLATE) \
--css &(root)/css/style.css \ --css &(root)/css/style.css \
--include-in-header=&(root)/templates/header.html \ --include-in-header=&(root)/templates/header.html \
--include-before-body=&(root)/templates/nav.html \ --include-before-body=&(root)/templates/nav.html \
--include-after-body=&(build_root)/templates/footer.html \ --include-after-body=&(root)/templates/footer.html \
%f | sed 's|%%webRoot%%|&(root)|g' > %o \ %f | sed 's|%%webRoot%%|&(root)|g' > %o \
|> %B.html |> %B.html
@ -21,5 +20,5 @@ HTML_TEMPLATE = main.html
!compress_pdf = |> ps2pdf %f %o |> !compress_pdf = |> ps2pdf %f %o |>
JPG_OPT = -quality 80 -strip -interlace Plane JPG_OPT = -quality 80 -strip -interlace Plane
!blur_mini = |> ^ %f -> blur mini^ convert %f -resize 400x400 -blur 0x8 $(JPG_OPT) %o |> blur_mini.jpg !blur_mini = |> convert %f -resize 400x400 -blur 0x8 $(JPG_OPT) %o |> blur_mini.jpg
!thumbnail = |> ^ %f -> thumbnail^ convert %f -resize 200x200 $(JPG_OPT) %o |> !thumbnail = |> convert %f -resize 200x200 $(JPG_OPT) %o |>

View file

@ -1,9 +1,6 @@
# vim: set ft=make : # vim: set ft=make :
root := `pwd` root := `pwd`
setup-ubuntu:
sudo apt install fuse3 pandoc
# Build static website # Build static website
build: build:
tup build tup build

View file

@ -5,4 +5,3 @@
<a href="%webRoot%/articles/index.html">Articles</a> <a href="%webRoot%/articles/index.html">Articles</a>
<a href="%webRoot%/about.html">About</a> <a href="%webRoot%/about.html">About</a>
</div> </div>
<hr>