mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-21 21:06:03 +03:00
15 lines
204 B
Bash
Executable File
15 lines
204 B
Bash
Executable File
#!/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
|