fix homepage css
All checks were successful
/ ls (push) Successful in 4s

This commit is contained in:
Mira Kristipati 2025-01-29 10:54:57 -05:00
parent 6178c08a19
commit 1c1c87a375
2 changed files with 15 additions and 1 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM alpine:latest
WORKDIR /app
# Install required packages
RUN apk add --no-cache hugo git
# Clone the website repository
RUN git clone https://git.argentumcation.com/mira/website.git /app \
&& git submodule update --init --recursive
CMD ["hugo", "server", "--bind", "0.0.0.0"]

View file

@ -1,7 +1,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="http://127.0.0.1:1313/the-monospace-web/index.css" /> {{ partialCached "head.html" . "ArgentumCation"}}
</head> </head>
<body> <body>
@ -12,3 +12,5 @@
</body> </body>
</html> </html>
</html>