Files
go_blog/templates/page1.tmpl

16 lines
306 B
Cheetah
Raw Normal View History

2023-12-20 16:50:05 +08:00
<!DOCTYPE html>
<html>
<head>
<title>Page 1</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Page 1</h1>
<p>This is the content of page 1.</p>
2024-01-10 16:05:15 +08:00
<h1>{{.title}}</h1>
<h2>{{.user.Name}}</h2>
<h3>{{.user.Age}}</h3>
2023-12-20 16:50:05 +08:00
</body>
</html>