mirror of
https://git.mills.io/prologic/zs
synced 2024-11-22 21:36:11 +03:00
10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
CSS="style triangles"
|
|
|
|
for css in $CSS; do
|
|
printf "<link rel=\"stylesheet\" href=\"/css/%s.css\">\n" "$css"
|
|
done
|