website/views/index.hbs

27 lines
566 B
Handlebars
Raw Permalink Normal View History

2019-11-15 16:51:24 +00:00
<body>
<div class="center">
2019-12-09 19:48:19 +00:00
<h1 class="title">{{name}}</h1>
<h1 class="subtitle toggle">dark/light</h1>
2019-12-10 11:37:21 +00:00
2019-11-30 13:14:32 +00:00
{{#each item}}
2019-11-28 19:03:30 +00:00
<a class="{{this.name}}" href="{{this.source}}">{{this.name}}</a>
{{/each}}
2019-12-10 11:37:21 +00:00
2019-11-30 13:14:32 +00:00
<div class="socials">
{{#each social}}
2019-12-10 21:02:28 +00:00
<a href="https://{{link}}" class="{{name}}">
<svg width="40" height="40" role="img" viewBox="0 0 24 24">
<title>{{name}} Icon</title>
<path d="{{icon.path}}"></path>
</svg></a>
2019-12-10 21:02:28 +00:00
2019-11-30 13:14:32 +00:00
{{/each}}
2019-12-10 21:02:28 +00:00
2019-11-30 13:14:32 +00:00
</div>
2019-12-10 21:02:28 +00:00
2019-11-28 19:03:30 +00:00
2019-11-16 21:04:54 +00:00
<div id="box"></div>
2019-11-15 16:51:24 +00:00
</div>
2019-11-15 16:51:24 +00:00
</body>