nftmashin/templates/index.tmpl
Cat /dev/Nulo 2564195670
All checks were successful
continuous-integration/woodpecker the build was successful
index: Hacer todo el título un link
2021-11-12 15:30:23 -03:00

28 lines
637 B
Cheetah

{{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>
<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>
<h3>
<a href="/nfts/{{.Id}}">
{{.Asset.Name}}
(<span class=dinero>${{printf "%.2f" .GetUSDPrice}}</span>)
</a>
</h3>
{{template "embed-nft" .}}
</figure>
<hr>
{{end}}
</section>
{{end}}