Skip to content

Commit 85ffdff

Browse files
Merge branch 'add-post-6'
Add post 6 Sharing Password Bundles.
2 parents b461ea9 + fef1e36 commit 85ffdff

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<script lang="ts">
2+
import { posts, type post } from '../posts';
3+
import PageSubtitle from '../../../../components/pageSubtitle.svelte';
4+
import PageLayout from '../../../../components/layout/pageLayout.svelte';
5+
import PageParagraph from '../../../../components/pageParagraph.svelte';
6+
7+
let p: post = posts[5];
8+
let title = p.title;
9+
let date = p.date;
10+
let backText = 'blog';
11+
let backHref = '/blog';
12+
</script>
13+
14+
<PageLayout {backHref} {backText} {title} {date}>
15+
<PageSubtitle className="underline underline-offset-8 decoration-sky-500">Demo</PageSubtitle>
16+
<PageParagraph>
17+
In this demo, I will showcase new features, including creating a new bundle and sharing bundles
18+
with other users.
19+
</PageParagraph>
20+
<div class="pt-10">
21+
<iframe
22+
class="md:min-h-[315px] min-h-[250px] w-full"
23+
src="https://www.youtube.com/embed/6eTl_xgoaoc?si=zL53TtsNcgxAKjrO"
24+
title="YouTube video player"
25+
frameborder="0"
26+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
27+
referrerpolicy="strict-origin-when-cross-origin"
28+
allowfullscreen
29+
></iframe>
30+
</div>
31+
</PageLayout>

src/routes/(main)/blog/posts.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,11 @@ export const posts: post[] = [
3434
title: 'Managing Password Entries: Edit, Add, and Delete Features',
3535
description: `In this demo, we go over how to update, add, and delete entries in a password manager. You’ll see how to modify existing passwords, add extra details like text or date, and remove items or entries as needed. We also demonstrate how to work with different types of data such as text, passwords, and dates. This session builds on the first demo, showing the new functionality added to manage password entries more effectively.`,
3636
date: '2025-01-31'
37+
},
38+
{
39+
id: '6',
40+
title: 'Sharing Password Bundles',
41+
description: `In this demo, I will showcase new features, including creating a new bundle and sharing bundles with other users.`,
42+
date: '2025-03-13'
3743
}
3844
];

0 commit comments

Comments
 (0)