1
1
Fork 0
portfolio/src/templates/interior.hbs
2019-01-03 08:41:54 -06:00

62 lines
2.2 KiB
Handlebars

<!DOCTYPE html>
<html>
<head>
<title>Wroten - {{name}}</title>
<link href="./assets/stylesheet.css" rel="stylesheet" type="text/css">
<link href="./assets/highlightjs-dracula.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Slabo+27px|Source+Code+Pro|Source+Sans+Pro:300" rel="stylesheet">
<meta charset="UTF-8">
<meta name="author" content="Joe Wroten">
<meta name="description" content="Web engineer realizing the best tools to communicate valuable information to the people who need it.">
<meta name="keywords" content="developer,designer,engineer,web,portfolio">
<meta name="viewport" content="width=device-width; height=device-height; maximum-scale=1.4; initial-scale=1.0; user-scalable=yes">
</head>
<body>
<header class="interior-header">
<div class="interior-topbar -pad-h -pad-v">
<a href="/">
<svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<use xlink:href="./assets/spritesheet.svg#back" />
</svg>
</a>
</div>
<div class="interior-headline -pad-h -pad-v">
<h1 class="-container">
<svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<use xlink:href="./assets/spritesheet.svg#git" />
</svg>
{{name}}
</h1>
</div>
</header>
<main class="interior-content -container -pad-h -pad-v">
<article>
<header class="-clearfix">
<h2 class="interior-description">
{{description}}
</h2>
<span class="-right">
<a href={{url}}>
{{#if organization}}
{{organization}}
{{else}}
Github Repo
{{/if}}
</a>
</span>
<ul class="-left interior-tags">
{{#each repositoryTopics.edges}}
<li><a href="#" class="tag">{{this.node.topic.name}}</a>
{{/each}}
</ul>
</header>
{{{readme.html}}}
</article>
</main>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>