favoritter/web/templates/pages/export.html

21 lines
688 B
HTML
Raw Normal View History

{{define "content"}}
<h1>Eksporter favoritter</h1>
<p>Last ned alle favorittene dine i ønsket format.</p>
<div class="grid">
<article>
<header><strong>JSON</strong></header>
<p>Maskinlesbart format. Kan importeres tilbake.</p>
<footer>
<a href="{{basePath}}/export/json" role="button" class="outline" download>Last ned JSON</a>
</footer>
</article>
<article>
<header><strong>CSV</strong></header>
<p>Åpnes i regneark. Kan importeres tilbake.</p>
<footer>
<a href="{{basePath}}/export/csv" role="button" class="outline" download>Last ned CSV</a>
</footer>
</article>
</div>
{{end}}