mirror of
https://github.com/zoriya/vex.git
synced 2025-12-06 07:06:09 +00:00
Hidden search input
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
export let feed: Feed;
|
||||
|
||||
let viewTags = false;
|
||||
let hover = false;
|
||||
let hover = false;
|
||||
</script>
|
||||
|
||||
<article>
|
||||
|
||||
@@ -48,10 +48,10 @@
|
||||
];
|
||||
</script>
|
||||
|
||||
<MultiSelect items={countries} bind:value={selected} size="lg" />
|
||||
<!-- <MultiSelect items={countries} bind:value={selected} size="lg" />
|
||||
<Search>
|
||||
<Button>Search</Button>
|
||||
</Search>
|
||||
</Search> -->
|
||||
<main>
|
||||
<Timeline order="vertical" class="max-w-3xl">
|
||||
{#each displayPosts as post}
|
||||
|
||||
@@ -4,8 +4,8 @@ import type { Feed } from "$lib/types";
|
||||
const feeds: Feed[] = [
|
||||
{
|
||||
id: "1",
|
||||
title: "The first feed",
|
||||
url: "https://example.com/feed",
|
||||
name: "The first feed",
|
||||
link: "https://example.com/feed",
|
||||
faviconUrl: "https://kit.svelte.dev/favicon.png",
|
||||
tags: ["tag1", "tag2"],
|
||||
submitterId: "1",
|
||||
@@ -13,8 +13,8 @@ const feeds: Feed[] = [
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Phoronix",
|
||||
url: "https://www.phoronix.com",
|
||||
name: "Phoronix",
|
||||
link: "https://www.phoronix.com",
|
||||
faviconUrl: "https://www.phoronix.com/favicon.ico",
|
||||
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
||||
submitterId: "1",
|
||||
@@ -22,8 +22,8 @@ const feeds: Feed[] = [
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "LWN.net",
|
||||
url: "https://lwn.net",
|
||||
name: "LWN.net",
|
||||
link: "https://lwn.net",
|
||||
faviconUrl: "https://lwn.net/favicon.ico",
|
||||
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
||||
submitterId: "1",
|
||||
@@ -31,8 +31,8 @@ const feeds: Feed[] = [
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Reddit",
|
||||
url: "https://www.reddit.com",
|
||||
name: "Reddit",
|
||||
link: "https://www.reddit.com",
|
||||
faviconUrl: "https://www.reddit.com/favicon.ico",
|
||||
tags: ["social", "news", "discussion"],
|
||||
submitterId: "1",
|
||||
@@ -45,8 +45,8 @@ const feeds: Feed[] = [
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Hacker News",
|
||||
url: "https://news.ycombinator.com",
|
||||
name: "Hacker News",
|
||||
link: "https://news.ycombinator.com",
|
||||
faviconUrl: "https://news.ycombinator.com/favicon.ico",
|
||||
tags: ["news", "discussion"],
|
||||
submitterId: "1",
|
||||
|
||||
Reference in New Issue
Block a user