13 lines
336 B
Cheetah
13 lines
336 B
Cheetah
{{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>
|
|
<img src="/static/images/outside.png" alt="outside image" height="1330" width="2364">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|