You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/site/content/examples/hacker-news/Item.svelte

43 lines
613 B

<script>
import Comment from "./Comment.html";
export let item;
function back(event) {
event.preventDefault();
window.history.back();
}
</script>
<style>
article {
margin: 0 0 1em 0;
}
a {
display: block;
margin: 0 0 1em 0;
}
h1 {
font-size: 1.4em;
margin: 0;
}
</style>
<a href="#/top/1" on:click={back}>&laquo; back</a>
<article>
<a href="{item.url}">
<h1>{item.title}</h1>
<small>{item.domain}</small>
</a>
<p class="meta">submitted by {item.user} {item.time_ago}
</article>
<div class="comments">
{#each item.comments as comment}
<Comment {comment}/>
{/each}
</div>