Compare commits

..

3 Commits

3 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@@ -13,3 +13,4 @@ hugo.linux
# Temporary lock file while building
/.hugo_build.lock
static/style.css

View File

@@ -2,4 +2,4 @@ baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = "blank-theme"
theme = "lugo"

6
run.sh
View File

@@ -1,5 +1,11 @@
#!/usr/bin/env bash
DIR="$(dirname -- "${BASH_SOURCE[0]}")"
cd $DIR
rm -rfv public
mkdir -pv public
cp -rv themes/lugo/static/style.css static/
hugo server -D --noBuildLock