63 lines
1.8 KiB
Handlebars
63 lines
1.8 KiB
Handlebars
{{#> main}}
|
|
|
|
<header>
|
|
{{> navbar}}
|
|
</header>
|
|
|
|
<main class="container">
|
|
|
|
{{#each info}}
|
|
<article id="article">
|
|
<p>
|
|
{{{this}}}
|
|
</p>
|
|
</article>
|
|
{{/each}}
|
|
|
|
|
|
<section>
|
|
<h2 class="title is-1">VTubers</h2>
|
|
<div class="overflow-auto">
|
|
<table class="table striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Image</th>
|
|
<th>Theme Color</th>
|
|
<th>Links</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each vtubers}}
|
|
<tr>
|
|
<td><a href="/vt/{{this.slug}}">{{this.displayName}}</a></td>
|
|
<td>{{#if this.image}}<img src="{{getCdnUrl this.image}}" alt="{{this.displayName}}" class="avatar">{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if this.themeColor}}
|
|
<span style="background: {{this.themeColor}}; padding: 0.25em 0.5em; border-radius: 4px; color: white">
|
|
{{this.themeColor}}
|
|
</span>
|
|
{{else}}
|
|
—
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if this.twitter}}<a href="https://twitter.com/{{this.twitter}}" target="_blank">Twitter</a><br>{{/if}}
|
|
{{#if this.twitch}}<a href="https://twitch.tv/{{this.twitch}}" target="_blank">Twitch</a><br>{{/if}}
|
|
{{#if this.youtube}}<a href="https://youtube.com/{{this.youtube}}" target="_blank">YouTube</a><br>{{/if}}
|
|
{{#if this.fansly}}<a href="https://fansly.com/{{this.fansly}}" target="_blank">Fansly</a><br>{{/if}}
|
|
{{#if this.onlyfans}}<a href="https://onlyfans.com/{{this.onlyfans}}"
|
|
target="_blank">OnlyFans</a><br>{{/if}}
|
|
{{!-- Add more if needed --}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
{{> footer}}
|
|
</main>
|
|
{{/main}} |