Files
go_blog/templates/index.tmpl

24 lines
590 B
Cheetah
Raw Normal View History

2023-12-20 16:50:05 +08:00
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Welcome to my blog!</h1>
<p>This is a simple blog written using Go and Gin framework.</p>
<a href="/page/1">Go语言入门</a><br>
<a href="/page/2">Gin框架入门</a><br>
<a href="/page/3">Web开发基础</a><br>
2024-08-01 02:44:06 +08:00
<ul>
{{ range .Items }}
<li>Title: {{ .Title }}, Slug: {{ .Slug }}</li>
<li>Created: {{ .Created }}, Text: {{ .Text }}</li>
{{ end }}
</ul>
2023-12-20 16:50:05 +08:00
</body>
</html>