portfolio/views/index.hbs

31 lines
738 B
Handlebars
Raw Normal View History

2019-12-18 11:44:33 +00:00
<body>
<section id="home">
<h1 class="title center">{{name}}<span class="text"></span></h1>
</section>
2020-02-25 17:32:01 +00:00
<div class="container">
{{#each portfolio.code}}
<section id="{{this.id}}">
<h1><a class="{{this.id}} center" id="{{this.section}}" target="_blank" href="{{this.source}}">{{this.name}}</a>
</section>
{{/each}}
2020-02-12 09:42:27 +00:00
</div>
2020-02-25 17:32:01 +00:00
</section>
<section id="contact">
<div>
<p class="contactme">hire me for a project?</p>
<a class="email" href="mailto:howl@werewolf.computer">howl@werewolf.computer</a>
</div>
2020-02-12 09:42:27 +00:00
2020-02-25 17:32:01 +00:00
</section>
2020-02-12 09:42:27 +00:00
2020-02-25 17:32:01 +00:00
{{!-- <section id="Twitter">
2019-12-18 11:44:33 +00:00
<h1>
<a class="art" href="https://twitter.com/floofydev" target="_blank">@floofydev</a>
</h1>
2020-02-25 17:32:01 +00:00
</section> --}}
2019-12-18 11:44:33 +00:00
</body>