22 lines
930 B
Handlebars
22 lines
930 B
Handlebars
<article>
|
|
<a href="/articles/{{post.slug}}.html">
|
|
<h2>{{post.title}}</h2>
|
|
<svg width="200" height="268" viewBox="0 0 200 268" aria-labelledby="svg{{index}}title" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" overflow="visible" xml:space="preserve">
|
|
<title id="svg{{index}}title">{{image.alt}}</title>
|
|
<clipPath id="clip{{index}}">
|
|
<use xlink:href="#picture_frame"></use>
|
|
</clipPath>
|
|
<g clip-path="url(#clip{{index}})">
|
|
<image width="300" height="400" x="-50" y="10" xlink:href="{{post.image}}"></image>
|
|
</g>
|
|
</svg>
|
|
<p>{{post.meta_description}}</p>
|
|
<ul>
|
|
{{#each post.tags}}
|
|
<li>{{this.name}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
<i>Posted @</i>
|
|
<time>{{post.published_at}}</time>
|
|
</a>
|
|
</article> |