nftmashin/templates/index.tmpl

28 lines
637 B
Cheetah
Raw Normal View History

{{define "body"}}
<section style=text-align:center>
<h1>NFTmashin</h1>
<p><em>Beta: las copias pueden ser eliminadas en el futuro.</em></p>
<p>NFTs descargados: {{ .NFTNum }}</p>
2021-11-12 11:21:29 +00:00
<p>
Valor total:
<span class=dinero>USD ${{ printf "%.2f" .TotalUSDValue }}</span>
</p>
<a style=font-size:3rem href=/copiar>¡Copiar un NFT!</a>
</section>
<section>
<h2>Algunos NFTs descargados</h2>
{{range .NFTs}}
<figure>
2021-11-12 11:21:29 +00:00
<h3>
2021-11-12 18:30:23 +00:00
<a href="/nfts/{{.Id}}">
{{.Asset.Name}}
(<span class=dinero>${{printf "%.2f" .GetUSDPrice}}</span>)
</a>
2021-11-12 11:21:29 +00:00
</h3>
{{template "embed-nft" .}}
</figure>
<hr>
{{end}}
</section>
{{end}}