24 lines
590 B
Cheetah
24 lines
590 B
Cheetah
<!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>
|
|
|
|
<ul>
|
|
{{ range .Items }}
|
|
<li>Title: {{ .Title }}, Slug: {{ .Slug }}</li>
|
|
<li>Created: {{ .Created }}, Text: {{ .Text }}</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|