mirror of
https://git.mills.io/prologic/zs.git
synced 2024-11-03 01:38:30 -04: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
|