mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-10 12:46:53 +00:00
27 lines
525 B
Text
27 lines
525 B
Text
package view
|
|
|
|
type HostViewModel struct {
|
|
Name string
|
|
Address string
|
|
ZipCode string
|
|
City string
|
|
PhoneNumber string
|
|
Email string
|
|
}
|
|
|
|
templ Index(host *HostViewModel) {
|
|
@BaseLayout() {
|
|
<article>
|
|
<header>{ host.Name }</header>
|
|
<div class="grid">
|
|
<img src="/static/img/logo.png" width="150px"/>
|
|
<ul>
|
|
<li>{ host.Address }</li>
|
|
<li>{ host.ZipCode }, { host.City }</li>
|
|
<li>{ host.PhoneNumber }</li>
|
|
<li>{ host.Email }</li>
|
|
</ul>
|
|
</div>
|
|
</article>
|
|
}
|
|
}
|