diff options
| -rw-r--r-- | build/templates/partials/footer.html | 11 | ||||
| -rw-r--r-- | build/templates/partials/head.html | 2 | ||||
| -rw-r--r-- | hooks/post-receive | 6 |
3 files changed, 7 insertions, 12 deletions
diff --git a/build/templates/partials/footer.html b/build/templates/partials/footer.html index 6dca778..7fe90b1 100644 --- a/build/templates/partials/footer.html +++ b/build/templates/partials/footer.html @@ -1,16 +1,5 @@ <footer> <hr /> - <a href="https://git.gumx.cc">git</a> / - <a href="https://mail.gumx.cc">mail</a> / - <a href="https://irc.gumx.cc">irc</a> / - <a href="https://vpn.gumx.cc">vpn</a> / - <a href="https://pgp.gumx.cc">pgp</a> / - <a href="https://wk.fo">wk.fo</a> - <br /> - <a href="https://webring.gumx.cc/gumx.cc/previous">← previous site</a> / - <a href="https://webring.gumx.cc/">webring</a> / - <a href="https://webring.gumx.cc/gumx.cc/next">next site →</a> - <br /> <a href="https://git.gumx.cc/ubergeek">source</a> / <a href="/license">license</a> </footer> diff --git a/build/templates/partials/head.html b/build/templates/partials/head.html index f9f143e..babe762 100644 --- a/build/templates/partials/head.html +++ b/build/templates/partials/head.html @@ -8,4 +8,4 @@ {{#HAS_CODE}}<link rel="stylesheet" href="/styles/highlight.min.css" /> <script src="/scripts/highlight.min.js"></script> <script>hljs.highlightAll();</script>{{/HAS_CODE}} - <link href="data:," rel="icon"> + <link rel="icon" type="image/svg+xml" href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1IDUiPjxyZWN0IHg9IjEiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIyIiB5PSIxIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMCIgeT0iMiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjEiIHk9IjIiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIyIiB5PSIyIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PC9zdmc+"> diff --git a/hooks/post-receive b/hooks/post-receive new file mode 100644 index 0000000..4734e3c --- /dev/null +++ b/hooks/post-receive @@ -0,0 +1,6 @@ +#!/bin/sh +set -e +cd /home/git/build/ubergeek +bash build.sh +rsync -rlptD --delete output/ /var/www/ubergeek.gumx.cc/ +echo "ubergeek deployed" |
