Newer
Older
express-blog / src / views / pages / stack.handlebars
@Jason Jason on 24 Jul 612 bytes modified: content
{{#section "styles"}}
<link rel="stylesheet" href="{{baseUrl}}/static/css/stack.css">
{{/section}}

<h1>Technology Stack</h1>
<section class="stack-grid">
    {{#each tech}}
    <article class="stack-item">
        <a href="{{url}}" target="_blank" rel="noopener noreferrer">
            {{#if svg}}
            <img src="{{svg}}" alt="{{name}} logo" width="300" height="200">
            {{else if png}}
            <img src="{{png}}" alt="{{name}} logo" width="300" height="200">
            {{/if}}
        </a>
        <h2>{{name}}</h2>
        <p>{{description}}</p>
    </article>
    {{/each}}
</section>