forked from mylofi/localfirstweb.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·76 lines (73 loc) · 2.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
layout: compress
---
{% include header.html %}
<summary>
So, you want to build an app that has its data co-located with its UI?
That works offline? That synchronizes between clients? And that lets its
users own their data?
<b>Welcome to the world of local-first web development.</b>
</summary>
<aside>
<div class="heading">
Join our
<a href="https://discord.gg/lfwdev" target="_blank"><img class="discord"
src="/assets/images/discord.svg" /></a>
community and attend
<a href="https://discord.gg/8b4cbrkA5p?event=1124533252594597929"
target="_blank">the next meetup</a>
</a>
</div>
<a href="https://discord.gg/8b4cbrkA5p?event=1124533252594597929"
target="_blank"><img class="feature" src="/assets/images/meetup6.png" />
</a>
Tuesday June 27, 2023 @ 12PM EST
<br/>
<a href="/assets/LoFi_Meetup.ics" download><img class="discord" src="/assets/images/June27.png" /></a>
<a target="_blank"
href="https://www.youtube.com/live/35Q8B3uq9Us?feature=share">
<img class="discord"
src="https://upload.wikimedia.org/wikipedia/commons/0/09/YouTube_full-color_icon_%282017%29.svg"></a>
<a target="_blank"
href="https://calendar.google.com/calendar/event?action=TEMPLATE&tmeid=M2pxdHA5aXJrb2k0aHRlZWFkaThqYnFnNXMgZjgwNGE4ZjU3MGNiZThiOWNmZDk1MTg3MzJmMjcyM2E1MzcxMWEyMTc1OTYyZTkwZDU4NTgxN2MzYWNlMjllM0Bn&tmsrc=f804a8f570cbe8b9cfd9518732f2723a53711a2175962e90d585817c3ace29e3%40group.calendar.google.com">
<img class="discord"
src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Google_Calendar_icon_%282020%29.svg"></a>
<br/>
<a href="https://www.youtube.com/playlist?list=PLTbD2QA-VMnXFsLbuPGz1H-Najv9MD2-H"
target="_blank">Catch up on the previous talks</a>
</aside>
<main>
{%for group in site.data.content%}
<h2><em>{{group.index}}.</em> {{group.title}}</h2>
{%for section in group.sections%}
<section class="{{section.class}}">
<h3>{{section.title}}</h3>
<ul>
{%for item in section.items%}
<li>
<a href="{{item.url}}" target="_blank">
<img src="{{item.icon}}" />
{{item.title}}
</a>
<small>{{item.author}}</small>
</li>
{%endfor%}
</ul>
</section>
{%endfor%} {%endfor%}
</main>
<aside>
<p>
We started a blog! Read our origin story in <a
href='/blog/2023-05-29-i-wrote-a-static-web-page'>the first post</a>.
</p>
<p>Something missing? ✍️ <a
href="https://github.com/localfirstweb/localfirstweb.dev/tree/main/_data/content.json"
>Edit the lists</a>
or
🎨 <a
href="https://github.com/localfirstweb/localfirstweb.dev/tree/main/assets/css/main.scss"
>redesign the page!</a>
</p>
</aside>
{% include footer.html %}