owo
This commit is contained in:
commit
9f77e7cfe1
12 changed files with 2013 additions and 0 deletions
22
views/index.hbs
Normal file
22
views/index.hbs
Normal file
|
@ -0,0 +1,22 @@
|
|||
<body>
|
||||
|
||||
<section id="home">
|
||||
<h1 class="title center">{{name}}<span class="text"></span></h1>
|
||||
</section>
|
||||
|
||||
{{#each portfolio.code}}
|
||||
<section id="{{this.name}}">
|
||||
<h1><a class="{{this.name}} center" id="{{this.id}}" target="_blank" href="{{this.source}}">{{this.name}}</a>
|
||||
<div class="buttons">
|
||||
{{#each this.tags}}
|
||||
<button class="{{this}}"><i><strong>{{this}}</strong></i></button>
|
||||
{{/each}}
|
||||
</div>
|
||||
</section>
|
||||
{{/each}}
|
||||
<section id="Twitter">
|
||||
<h1>
|
||||
<a class="art" href="https://twitter.com/floofydev" target="_blank">@floofydev</a>
|
||||
</h1>
|
||||
</section>
|
||||
</body>
|
38
views/layouts/main.hbs
Normal file
38
views/layouts/main.hbs
Normal file
|
@ -0,0 +1,38 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible">
|
||||
<title>{{host}} | ry</title>
|
||||
<script src="../assets/js/main.js" async></script>
|
||||
<link rel="stylesheet" type="text/css" href="../assets/css/x.css" />
|
||||
<meta name="msapplication-TileColor" content="#fcba03">
|
||||
|
||||
<meta name="theme-color" content="#fcba03">
|
||||
<meta property="og:title" content="ry">
|
||||
<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="Portfolio">
|
||||
|
||||
|
||||
{{!-- <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>
|
Loading…
Add table
Add a link
Reference in a new issue