forked from staticapps/staticapps.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 1.09 KB
/
index.html
File metadata and controls
27 lines (24 loc) · 1.09 KB
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
---
layout: default
title: Static Web Apps - A Field Guide
---
<div id="home">
<p class="lead site-intro"><b>Static Web Applications</b> run
independently of the need for server-side dynamic processing. Static web
architecture eases common web development headaches without introducing additional complexity. This
guide will introduce you to the world of static web applications and
offer solutions to common challenges encountered while building them. Welcome!</p>
{% include subscribe.html %}
<ul class="post-list">
{% for chapter in site.data.chapters %}
<li><a href="/articles/{{ chapter.slug }}" class="post-link">
<span class="title">{{ chapter.title }} <i class="fa fa-angle-right"></i></span>
<span class="description">{{ chapter.description }}</span>
</a></li>
{% endfor %}
<li class="coming-soon"><a class="post-link">
<span class="title">New Content Weekly!</span>
<span class="description">We add new content to this resource weekly, so don't forget to subscribe above if you want to see more!</span>
</a></li>
</ul>
</div>