56 lines
1.1 KiB
HTML
56 lines
1.1 KiB
HTML
{{define "pages/index.html"}}
|
|
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{.title}}</title>
|
|
</head>
|
|
<body>
|
|
{{/*输出*/}}
|
|
<h2>{{.title}}</h2>
|
|
|
|
{{/*定义变量*/}}
|
|
{{$t :=.title}}
|
|
<h4>{{$t}}</h4>
|
|
|
|
|
|
{{/*条件判断*/}}
|
|
{{if ge .score 60}}
|
|
<p>及格</p>
|
|
{{else}}
|
|
<P></P>
|
|
{{end}}
|
|
|
|
{{/*循环遍历数据*/}}
|
|
|
|
{{range $key,$value:=.hobby}}
|
|
<ul>
|
|
<li>{{$key}}--{{$value}}</li>
|
|
</ul>
|
|
{{end}}
|
|
|
|
{{range $key,$value:=.newsList}}
|
|
<ul>
|
|
<li>{{$key}}--{{$value.Title}}--{{$value.Content}}</li>
|
|
</ul>
|
|
{{end}}
|
|
|
|
{{range $key,$value:=.newsList2}}
|
|
<ul>
|
|
<li>{{$key}}--{{$value.Title}}--{{$value.Content}}</li>
|
|
</ul>
|
|
{{else}}
|
|
<li>没有数据</li>
|
|
{{end}}
|
|
|
|
{{/*结构结构*/}}
|
|
{{with .news}}
|
|
{{.Title}}
|
|
{{.Content}}
|
|
{{end}}
|
|
|
|
|
|
</body>
|
|
</html>
|
|
{{end}} |