add css to base.html

This commit is contained in:
Sakooooo 2024-12-23 22:48:53 +04:00
parent 102d01e3b6
commit ce9e0e71d2
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 3 additions and 2 deletions

View file

@ -2,8 +2,9 @@
<html> <html>
<head> <head>
<title>void</title> <title>void</title>
<link rel="stylesheet" href="assets/css/base.css">
</head> </head>
<body> <body>
{{block "body" $}}{{end}} {{block "body" $}}{{end}}
</body> </body>
</html> </html>

View file

@ -2,4 +2,4 @@
{{define "body"}} {{define "body"}}
<h1> test </h1> <h1> test </h1>
<p> hi, hello </p> <p> hi, hello </p>
{{end}} {{end}}