rebasing on master

This commit is contained in:
drew 2019-10-20 12:45:11 +02:00 committed by surtur
parent a546004c7b
commit bc0980279f
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 11 additions and 2 deletions

@ -1,4 +1,4 @@
baseurl = "/" baseurl = "/~y192235/"
languageCode = "en-us" languageCode = "en-us"
theme = "hermit" theme = "hermit"
license = "WTFPL" license = "WTFPL"
@ -26,7 +26,7 @@ enableEmoji = true
relatedPosts = false relatedPosts = false
# Directory name of your blog content (default is `content/posts`) # Directory name of your blog content (default is `content/posts`)
contentTypeName = "posts" contentTypeName = "status"
# Default theme "light" or "dark" # Default theme "light" or "dark"
defaultTheme = "dark" defaultTheme = "dark"

9
deploy Executable file

@ -0,0 +1,9 @@
#!/bin/sh
USER=y192235
HOST=mrkev.fme.vutbr.cz
DIR=public_html/
hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
exit 0