portfolio/views/index.hbs

22 lines
625 B
Handlebars

<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>