Final adjustments

This commit is contained in:
2025-11-01 12:42:40 +01:00
parent 416deaa772
commit 53caca383e
3 changed files with 35 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
## Personal Website
Source code for my personal website. Built with Hugo, minimal black and white design.
Live: agres.online
## Stack
- Hugo static site generator - no themes used
- Inter typeface
- Custom CSS
## Local Development
use makefile
## Licence
MIT
+1 -1
View File
@@ -42,7 +42,7 @@
<script>
document.addEventListener("DOMContentLoaded", function () {
const text = "agres.online";
const text = "Welcome";
const element = document.getElementById("typedText");
let index = 0;
+16
View File
@@ -0,0 +1,16 @@
BASE_URL := https://agres.online/
DEST := public
HUGO := hugo
build:
cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL)
serve:
cd blog && hugo serve -D --cleanDestinationDir
clean:
cd blog && rm -rf ./public/*
.PHONY: build serve clean