This commit is contained in:
Laurent Ulrich
2025-08-19 09:56:13 +02:00
parent 9f88d84513
commit 8c76f5e6f0
4 changed files with 46 additions and 24 deletions

View File

@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width" />
<title>{{.BlogTitle}}</title>
</head>
<h1>{{.BlogTitle}}</h1>
<h1><a href="/proxy/8080/">{{.BlogTitle}}</a></h1>
<body>
<h2>{{.Title}}</h2>
<div>

View File

@@ -4,14 +4,27 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{{.Title}}</title>
<style>
a:link {
color: black;
text-decoration: none;
}
a:visited {
color: black;
text-decoration: none;
}
a:hover {
color: orange;
text-decoration: none;
}
</style>
</head>
<body>
<h1>{{.Title}}</h1>
<h1><a href="/proxy/8080/">{{.Title}}</a></h1>
{{range .Posts}}
<article>
<a href=/proxy/8080/post/{{ .Id }}>
<h2>{{.Title}}</h2>
</a>
<h2><a href=/proxy/8080/post/{{ .Id }}>{{.Title}}</a></h2>
<div>
{{.HTML}}
</div>