shin-neo-lyrical-tokarev/views/lists/sites.hbs

33 lines
1.2 KiB
Handlebars
Raw Permalink Normal View History

2024-10-09 20:04:09 -04:00
<body>
<center>
<table>
{{#each categoriesAndSites}}
{{#ifDivisibleBy @index 2}}
</tr>
<tr>
{{/ifDivisibleBy}}
<td>
<h2>{{name}}</h2>
<ul>
{{#each sites}}
<li>
2024-10-09 21:10:49 -04:00
<a href="{{link}}">{{name}}</a> <a class="archive" href="https://web.archive.org/web/*/{{link}}">[archive]</a>
2024-10-09 20:04:09 -04:00
{{#if image}}
<br>
<a href="{{link}}"><img src="/public/dynamic/sync/buttons/{{image}}"></a>
{{/if}}
{{#if description}}
<span>{{description}}</span>
{{/if}}
</li>
{{/each}}
</td>
</ul>
{{/each}}
</table>
2024-10-17 15:29:40 -04:00
<hr>
2024-10-21 05:34:58 -04:00
{{>lyrics lyrics="<br>
2024-10-17 15:29:40 -04:00
見たくはないさ<br>
2024-10-21 05:34:58 -04:00
愛を取り戻せ"}}
2024-10-09 20:04:09 -04:00
</center>
</body>