@@ -0,0 +1,15 @@ | |||
# Created by https://www.gitignore.io/api/hugo | |||
# Edit at https://www.gitignore.io/?templates=hugo | |||
### Hugo ### | |||
# Generated files by hugo | |||
/public/ | |||
/resources/_gen/ | |||
# Executable may be added to repository | |||
hugo.exe | |||
hugo.darwin | |||
hugo.linux | |||
# End of https://www.gitignore.io/api/hugo |
@@ -0,0 +1,6 @@ | |||
--- | |||
title: "{{ replace .Name "-" " " | title }}" | |||
date: {{ .Date }} | |||
draft: true | |||
--- | |||
@@ -0,0 +1,16 @@ | |||
baseURL = "http://ojizero.tech/blog" | |||
languageCode = "en-us" | |||
title = "ojizero/blog" | |||
# theme = "hello-friend" | |||
# [params] | |||
# # dir name of your blog content (default is `content/posts`) | |||
# # contentTypeName = "posts" | |||
# defaultTheme = "dark" | |||
# # if you set this to 0, only submenu trigger will be visible | |||
# # showMenuItems = 2 | |||
# # # Show reading time in minutes for posts | |||
# # showReadingTime = true |
@@ -0,0 +1,28 @@ | |||
#!/bin/sh | |||
if [ "`git status -s`" ] | |||
then | |||
echo "The working directory is dirty. Please commit any pending changes." | |||
exit 1; | |||
fi | |||
echo "Deleting old publication" | |||
rm -rf public | |||
mkdir public | |||
git worktree prune | |||
rm -rf .git/worktrees/public/ | |||
echo "Checking out gh-pages branch into public" | |||
git worktree add -B gh-pages public upstream/gh-pages | |||
echo "Removing existing files" | |||
rm -rf public/* | |||
echo "Generating site" | |||
hugo | |||
echo "Updating gh-pages branch" | |||
cd public && git add --all && git commit -m "Publishing to gh-pages (publish.sh)" | |||
#echo "Pushing to github" | |||
#git push --all |