mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-21 21:06:03 +03:00
10 lines
156 B
Bash
Executable File
10 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
CSS="bahunya board highlight site"
|
|
|
|
for css in $CSS; do
|
|
printf "<link rel=\"stylesheet\" href=\"/assets/css/%s.css\">\n" "$css"
|
|
done
|