iris/_examples/view/template_html_5/views/about.html
chenPengXu 20fa06b46b modify
Former-commit-id: 3cae751d13b1c97dae0db7802b42b462f7c89fdb
2018-10-27 20:53:24 +08:00

15 lines
265 B
HTML

{{ define "about-head"}}
<title>about page</title>
<style type="text/css">
body {
background: #666;
}
</style>
{{ end }}
{{ define "about-body"}}
extend body content in layout.
{{ end }}
<div>
Hello about page
</div>