36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<div class="grid-x grid-padding-x">
|
|
<div class="large-12 cell">
|
|
|
|
<h5>Manage links</h5>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>title/url</th>
|
|
<th>tags</th>
|
|
<th class="show-for-large">created</th>
|
|
<th class="show-for-large">scraped</th>
|
|
</tr>
|
|
{{ range .bookmarks }}
|
|
<tr>
|
|
<th>{{ .ID }}</th>
|
|
<td>
|
|
<a href="{{ .URL }}">{{ .Info.Title }}</a>
|
|
<br>
|
|
<a href="{{ .URL }}">{{ niceURL .URL }}</a>
|
|
</td>
|
|
<td>
|
|
{{ join .Tags ", " }}
|
|
</td>
|
|
<td class="show-for-large">{{ (nicetime .TimestampCreated).HumanDuration }} ago</td>
|
|
<td class="show-for-large">{{ (nicetime .TimestampLastScraped).HumanDuration }} ago</td>
|
|
|
|
<td>
|
|
<a class="button" hx-swap="outerHTML" hx-post="/scrape/{{ .ID }}">scrape</button>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
|
|
</div>
|
|
</div> |