almost working site

This commit is contained in:
monty 2019-11-28 20:03:30 +01:00
parent 351773a8aa
commit bb70bf6d3f
25 changed files with 1508 additions and 58 deletions

View file

@ -1,9 +1,13 @@
<body>
<div class="center">
<h1 class="title"><i>{{link}}</i></h1>
<a class="portfolio" href="/portfolio">portfolio</a>
<a class="lore" href="/lore">lore</a>
<a class="art" href="/art">art</a>
<h1 class="title toggle"><i>{{name}}</i></h1>
{{#each item}}
<a class="{{this.name}}" href="{{this.source}}">{{this.name}}</a>
{{/each}}
{{!-- <a class="portfolio" href="/portfolio">portfolio</a>
<a id="disabled" class="lore" href="/lore">lore</a>
<a id="disabled" class="art" href="/art">art</a> --}}
<div id="box"></div>
</div>
</body>

44
views/layouts/lore.hbs Normal file
View file

@ -0,0 +1,44 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
<meta http-equiv="X-UA-Compatible">
<title>ry - lore</title>
<script src="../assets/js/main.js" async></script>
{{!-- <script src="../assets/js/lore.js" async></script> --}}
<link rel="stylesheet" type="text/css" href="../assets/css/lore.css" />
{{!--
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<link rel="manifest" href="./assets/json/manifest.json">
<script type="text/javascript" src="./assets/js/dropdown.js"></script> --}}
<meta name="theme-color" content="#e4778d">
<meta property="og:title" content="ry - lore">
<meta property="og:type" content="website">
<meta property="og:url" content="https://{{host}}">
{{!-- <meta property="og:image"
content="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png">
--}} <meta property="og:description" content="hewwo -w-">
{{!-- <link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="32x32">
<link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="96x96">
<link rel="apple-touch-icon" sizes="180x180"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png"> --}}
<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>

View file

@ -18,18 +18,18 @@
<meta name="theme-color" content="#e4778d">
<meta property="og:title" content="ry">
<meta property="og:type" content="website">
{{!-- <meta property="og:url" content="https://fk.ci"> --}}
<meta property="og:url" content="https://{{host}}">
{{!-- <meta property="og:image"
content="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png">
--}} <meta property="og:description" content="hewwo -w-">
<link rel="icon" type="image/png"
{{!-- <link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="32x32">
<link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="96x96">
<link rel="apple-touch-icon" sizes="180x180"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png">
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png"> --}}
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="apple-mobile-web-app-capable" content="yes">

View file

@ -0,0 +1,44 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
<meta http-equiv="X-UA-Compatible">
<title>ry - portfolio</title>
<script src="../assets/js/main.js" async></script>
{{!-- <script src="../assets/js/lore.js" async></script> --}}
<link rel="stylesheet" type="text/css" href="../assets/css/portfolio.css" />
{{!--
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<link rel="manifest" href="./assets/json/manifest.json">
<script type="text/javascript" src="./assets/js/dropdown.js"></script> --}}
<meta name="theme-color" content="#e4778d">
<meta property="og:title" content="ry - lore">
<meta property="og:type" content="website">
<meta property="og:url" content="https://{{host}}">
{{!-- <meta property="og:image"
content="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png">
--}} <meta property="og:description" content="hewwo -w-">
{{!-- <link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="32x32">
<link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png" sizes="96x96">
<link rel="apple-touch-icon" sizes="180x180"
href="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png"> --}}
<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>

11
views/portfolio.hbs Normal file
View file

@ -0,0 +1,11 @@
<body>
<h1 class="title" > <a href="/">{{name}}</a></h1>
<h1 class="subtitle toggle">dark/light</h1>
<div class="center">
{{#each portfolio}}
<a class="{{this.name}}" target="_blank" href="{{this.source}}">{{this.name}}</a>
{{/each}}
<div id="box"></div>
</div>
</body>

11
views/story.hbs Normal file
View file

@ -0,0 +1,11 @@
<body>
<h1 class="title" > <a href="/">{{name}}</a></h1>
<h1 class="subtitle toggle">dark/light</h1>
<div class="center">
<a class="monty" href="/lore/monty">monty</a>
<a class="ryden" href="/lore/ryden">ryden</a>
<a class="thaldrin" href="/lore/thaldrin">thaldrin</a>
<div id="box"></div>
</div>
</body>