fixes more menu

This commit is contained in:
hobbes7878 2024-09-24 07:41:28 +01:00
parent a64916f445
commit e3a6eccd02
2 changed files with 2 additions and 15 deletions

View file

@ -3,7 +3,6 @@
import { getTime } from './time';
export let story;
export let withSection = false;
$: thumbnail = story.thumbnail;
</script>
@ -11,17 +10,8 @@
<div class="story-card">
<a href="{normalizeUrl(story.canonical_url)}">
<div class="story-text" class:has-thumbnail="{thumbnail}">
{#if withSection}
<a href="{normalizeUrl(story.primary_section.id)}">
<span class="label">{story.primary_section.name}</span>
</a>
{/if}
<span>{story.title}</span>
{#if !withSection}
<time datetime="{story.display_time}"
>{getTime(story.display_time)}</time
>
{/if}
<time datetime="{story.display_time}">{getTime(story.display_time)}</time>
</div>
{#if thumbnail}
<div class="thumbnail">

View file

@ -63,10 +63,7 @@
<ul class="story-list">
{#each stories as story}
<li class="story-item">
<StoryCard
{story}
withSection="{$activeSection === 'more'}"
/>
<StoryCard {story} />
</li>
{/each}
</ul>