| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <tr id="tr-{{id}}" {{#if swap_oob}}hx-swap-oob="true"{{/if}}>
- <td class="original-url">
- <a href="{{target}}">
- {{target}}
- </a>
- {{#if description}}
- <p class="description">
- {{description}}
- </p>
- {{/if}}
- </td>
- <td class="created-at">
- {{relative_created_at}}
- {{#if relative_expire_in}}
- <p class="expire-in">
- Expires in {{relative_expire_in}}
- </p>
- {{/if}}
- </td>
- <td class="short-link">
- {{!-- <div class="clipboard">
- <button
- aria-label="Copy"
- hx-on:click="handleShortURLCopyLink(this);"
- data-url="{{url}}"
- >
- <svg class="copy" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24"><rect width="13" height="13" x="9" y="9" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>
- </button>
- <svg class="check" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="#000" viewBox="0 0 24 24"><path d="M20 6 9 17l-5-5"/></svg>
- </div> --}}
- <a href="{{link.url}}">{{link.link}}</a>
- </td>
- <td class="views">
- {{visit_count}}
- </td>
- {{> links/actions}}
- </tr>
- <tr class="edit">
- <td class="loading">
- {{> icons/spinner}}
- </td>
- </tr>
|