mirror of
https://github.com/playit-cloud/support-docs.git
synced 2024-11-13 13:29:18 +00:00
21 lines
325 B
Bash
21 lines
325 B
Bash
hugo
|
|
|
|
rm -rf out
|
|
mkdir out
|
|
|
|
echo "
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"refresh\" content=\"7; url='/support'\" />
|
|
<script>window.location = '/support';</script>
|
|
</head>
|
|
<body>
|
|
<p>Please follow <a href=\"/support\">this link</a>.</p>
|
|
</body>
|
|
</html>
|
|
" > out/index.html
|
|
|
|
mv public out/support
|
|
|