generated from cms/tibi-docs
17 lines
341 B
Bash
17 lines
341 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$1" == "" ]; then
|
||
|
echo template filename required
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
preload=$(for f in frontend/dist/*.woff2; do
|
||
|
echo "<link rel=\"preload\" href=\"/dist/`basename $f`\" as=\"font\" type=\"font/woff2\" crossorigin />"
|
||
|
done)
|
||
|
|
||
|
template="`cat $1 | sed -e 's#<!--PRELOAD-->#\$preload#'`"
|
||
|
|
||
|
eval "cat <<EOF
|
||
|
$template
|
||
|
EOF"
|