udemy-go-web-1/templates/home.page.tmpl

13 lines
336 B
Cheetah
Raw Normal View History

2024-06-26 20:25:04 +00:00
{{template "base" .}}
{{define "content"}}
<div class="container">
<div class="row">
<div class="col">
<h1>This is the home page</h1>
<p>This is the content</p>
2024-06-28 20:30:19 +00:00
<img src="/static/images/outside.png" alt="outside image" height="1330" width="2364">
2024-06-26 19:56:58 +00:00
</div>
</div>
2024-06-26 20:25:04 +00:00
</div>
{{end}}