21 lines
567 B
Handlebars
21 lines
567 B
Handlebars
|
<body>
|
||
|
<section id="credits">
|
||
|
<p>made by <a href="https://floofy.dev" target="_blank" rel="yugen">floofy.dev</a></p>
|
||
|
</section>
|
||
|
<section id="home">
|
||
|
<div class="center">
|
||
|
<h1 class="title"><a class="back" href="/">🡠</a> Terms of Service</h1>
|
||
|
</div>
|
||
|
</section>
|
||
|
{{#each tos}}
|
||
|
<section id="{{this.kind}}">
|
||
|
<h1 class="SectionHeader">{{this.kind}}</h1>
|
||
|
<ul>
|
||
|
{{#each this.points}}
|
||
|
<li>{{this}}</li>
|
||
|
{{/each}}
|
||
|
</ul>
|
||
|
</section>
|
||
|
{{/each}}
|
||
|
|
||
|
</body>
|