0
0

🚸 add domain validity checker #3

Merged
thetek42 merged 15 commits from ui-test into main 2021-04-03 14:12:19 +02:00
Showing only changes of commit 634387af4c - Show all commits

View File

@ -7,13 +7,17 @@ pug raw/index.pug -o html
echo "<title>dnswatch</title> echo "<title>dnswatch</title>
<link rel=\"stylesheet\" href=\"index.css\"> <link rel=\"stylesheet\" href=\"index.css\">
<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&amp;display=swap\"> <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&amp;display=swap\">
<link rel=\"shortcut icon\" type=\"image/png\" href=\"favicon.png\">
<script src=\"index.js\"></script> <script src=\"index.js\"></script>
<script src=\"https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js\"></script>" | cat - html/index.html > temp <script src=\"https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js\"></script>" | cat - html/index.html > temp
mv temp html/index.html mv temp html/index.html
echo "<scipt src=\"feather.js\"></script>" >> html/index.html echo "<script src=\"feather.js\"></script>" >> html/index.html
# compile sass # compile sass
sass raw/index.sass html/index.css sass raw/index.sass html/index.css
# move js # move js
cp raw/*.js html cp raw/*.js html
# move favicon
cp raw/favicon.png html