alps/themes/sourcehut/address-object.html
Drew DeVault 1cf95af41e
Add <meta refresh> to mailbox view
This causes the mailbox to automatically reload the page every 60
seconds, without JavaScript.

This also updates the base template data to include the full URL, and
replaces the earlier "Path" field with a pre-split array of path
components, which is more immediately useful to most templates given the
limitations of string munging with text/template primitives.
2020-05-13 16:58:48 +02:00

45 lines
1.1 KiB
HTML

{{template "head.html" .Global}}
{{template "nav.html" .Global}}
{{$fn := .AddressObject.Card.Value "FN"}}
<div class="container-fluid">
<div class="row">
<div class="col-md-12 header-tabbed">
<h2>{{$fn}}</h2>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" href="#">View</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="{{.AddressObject.URL}}/edit"
>Edit</a>
</li>
<li class="mr-auto d-none d-sm-flex"></li>
<li class="nav-item">
<a class="nav-link" href="/contacts">
<span class="icon icon-caret-left">
{{template "caret-left.html"}}
</span>
Back
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<ul>
<li><strong>Name</strong>: {{$fn}}</li>
{{range .AddressObject.Card.Values "EMAIL"}}
<li><strong>E-mail</strong>:
<a href="/compose?to={{.}}">{{.}}</a>
</li>
{{end}}
</ul>
</div>
{{template "foot.html"}}