zs-starter-template/.zs/styles

15 lines
204 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
CSS="simple style"
ext="css"
if [ -n "$ZS_PRODUCTION" ]; then
ext="min.css"
fi
for css in $CSS; do
printf "<link rel=\"stylesheet\" href=\"/css/%s.%s\">\n" "$css" "$ext"
done