Files
njump/templates/details.html

19 lines
714 B
HTML

<div class="field {{if not (eq .type "other")}}advanced{{end}}">
<div class="label">Published at</div>
{{.createdAt | sanitizeString}}
</div>
<div class="field {{if not (eq .type "other")}}advanced{{end}}">
<div class="label">Kind type</div>
{{.kindID}} - <a href="https://github.com/nostr-protocol/nips/blob/master/{{.kindNIP | sanitizeString}}.md">{{.kindDescription | sanitizeString}}</a>
</div>
<div class="field {{if not (eq .type "other")}}advanced{{end}}">
<div class="label">Nevent</div>
<div>{{.nevent | sanitizeString}}</div>
</div>
<div class="field {{if not (eq .type "other")}}advanced{{end}} boxed">
<div class="label">Event JSON</div>
<div class="json">{{.eventJSON}}</div>
</div>