Files
go_blog/templates/page1.tmpl
2024-01-10 16:05:15 +08:00

16 lines
306 B
Cheetah

<!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>
<h1>{{.title}}</h1>
<h2>{{.user.Name}}</h2>
<h3>{{.user.Age}}</h3>
</body>
</html>