finshed site
This commit is contained in:
parent
0afa06cec5
commit
caba27bc79
12 changed files with 304 additions and 61 deletions
32
views/layouts/tos.hbs
Normal file
32
views/layouts/tos.hbs
Normal file
|
@ -0,0 +1,32 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible">
|
||||
<title>TOS | Yugen the Corgi | yugen.work</title>
|
||||
<script src="../assets/js/main.js" async></script>
|
||||
<link rel="stylesheet" type="text/css" href="../assets/css/tos.css" />
|
||||
|
||||
<meta name="theme-color" content="#e4778d">
|
||||
<meta property="og:title" content="yugen">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://{{host}}">
|
||||
<meta property="og:image" content="/assets/images/icon.jpg">
|
||||
<meta property="og:description" content="Socials, TOS & more">
|
||||
|
||||
|
||||
<link rel="icon" type="image/png" href="/assets/images/icon.jpg" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/assets/images/icon.jpg" sizes="96x96">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/icon.jpg">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{{body}}}
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
21
views/tos.hbs
Normal file
21
views/tos.hbs
Normal file
|
@ -0,0 +1,21 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue