Compare commits

..

2 Commits

Author SHA1 Message Date
42eed53cef
Add link to main website (bbaovanc.com) 2021-03-25 18:43:50 -05:00
7c568ef4d5
Add Makefile 2021-03-25 18:42:15 -05:00
2 changed files with 19 additions and 0 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
all: public
public: clean
hugo
clean:
rm -rf public
push: public
rsync -arvz -e 'ssh -p 2222' --progress --delete public/ bbaovanc.com:/var/www/bbaovanc/blog/
.PHONY: all clean

View File

@ -71,3 +71,10 @@ paginate = 5
identifier = "other-sites"
name = "Other Sites"
url = "/other-sites"
weight = 10
[[languages.en.menu.main]]
identifier = "main-website"
name = "Main Website"
url = "https://bbaovanc.com/"
weight = 20