Compare commits

..

5 Commits

Author SHA1 Message Date
nightnoryu 98c6d0755f Fix makefile commands 2026-05-27 12:02:45 +03:00
nightnoryu c86b1f866f Add theme and index page 2026-05-27 11:58:53 +03:00
nightnoryu b25783b43e Add makefile for deployment 2026-05-27 11:57:43 +03:00
nightnoryu 3fb71b6c9c Update .gitignore 2026-05-27 11:57:25 +03:00
nightnoryu 075289a35c Add robots 2026-05-27 11:57:17 +03:00
6 changed files with 27 additions and 1 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
# Generated hugo files
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
/.hugo_build.lock
+12
View File
@@ -0,0 +1,12 @@
.PHONY: all build clean deploy
all: build
build:
hugo build
clean:
rm -rf public
deploy: build
rsync -avz --delete public/ ubuntu@raspberry-local:/usr/local/www/homepage/
+8
View File
@@ -0,0 +1,8 @@
+++
title = 'nightnoryu'
layout = 'single'
+++
# Index
Work in progress.
+1
View File
@@ -1,3 +1,4 @@
baseURL = 'https://nightnoryu.com/'
locale = 'en-us'
title = 'nightnoryu'
theme = 'lugo'
+2
View File
@@ -0,0 +1,2 @@
User-Agent: *
Disallow:
Submodule
+1
Submodule themes/lugo added at 84fd40fbf1