forked from mylofi/localfirstweb.dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·50 lines (46 loc) · 1.3 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
---
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>
{% include heading.html %}
<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 %}