added file for transparent phone case feed post; added images for that post; added images and imagesAlt attributes to feed posts
This commit is contained in:
@@ -38,21 +38,28 @@
|
||||
subtitle="subtitle missing"
|
||||
/>
|
||||
|
||||
{@render pageButtons(data.currentPage)}
|
||||
|
||||
<p>Welcome to my (new) art feed! It is heavily inspired by <a href="https://deathsurplus.com/">DeathSurplus' art blog</a> – definitely go check out his page!</p>
|
||||
|
||||
<p>This page is intended to be a contrasting companion to the <a href="/projects"><code>projects</code> page</a>; I'll use this page for smaller things that don't fit the dedicated-page-format.</p>
|
||||
|
||||
<!-- <TableOfContents /> -->
|
||||
|
||||
{@render pageButtons(data.currentPage)}
|
||||
|
||||
{#each data.feedEntries as entry}
|
||||
<h2>{entry.title}</h2>
|
||||
<p class="subtitle">{entry.subtitle}</p>
|
||||
<p class="subtitle">{entry.date}</p>
|
||||
<svelte:component this={entry.content} />
|
||||
{#if entry.images && entry.images.length > 0}
|
||||
{#each entry.images as i, index}
|
||||
<img src="{entry.path}/{i}" alt={entry.imageAlts[index]}>
|
||||
{/each}
|
||||
{/if}
|
||||
{/each}
|
||||
|
||||
{@render pageButtons(data.currentPage)}
|
||||
|
||||
</Content>
|
||||
|
||||
<style>
|
||||
|
||||
Reference in New Issue
Block a user