diff --git a/ui/compile.sh b/ui/compile.sh index 1c9f009..fc8ccc4 100755 --- a/ui/compile.sh +++ b/ui/compile.sh @@ -7,13 +7,17 @@ pug raw/index.pug -o html echo "dnswatch + " | cat - html/index.html > temp mv temp html/index.html -echo "" >> html/index.html +echo "" >> html/index.html # compile sass sass raw/index.sass html/index.css # move js cp raw/*.js html + +# move favicon +cp raw/favicon.png html diff --git a/ui/html/favicon.png b/ui/html/favicon.png new file mode 100755 index 0000000..3b12f9a Binary files /dev/null and b/ui/html/favicon.png differ diff --git a/ui/html/index.html b/ui/html/index.html index 0445748..6ddb2e7 100644 --- a/ui/html/index.html +++ b/ui/html/index.html @@ -1,6 +1,7 @@ dnswatch + -

dnswatch

+

dnswatch

\ No newline at end of file diff --git a/ui/raw/favicon.png b/ui/raw/favicon.png new file mode 100755 index 0000000..3b12f9a Binary files /dev/null and b/ui/raw/favicon.png differ