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

35 lines
1.2 KiB
Handlebars
Raw 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>
<p>
微笑み忘れた顔など<br>
見たくはないさ<br>
愛を取り戻せ
</p>
2024-10-09 20:04:09 -04:00
</center>
</body>