mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-22 05:16:04 +03:00
15 lines
204 B
Plaintext
15 lines
204 B
Plaintext
|
#!/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
|