Static Site Generators (SSG)

Static Site Generators listed on Jamstack

An Example with 11ty (eleventy)

_template.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <title>{{ title }} | Nature of America</title>
    {% include _htmlhead.html %}
</head>

<body>
    <header>
        <h1>Nature of America</h1>
        {% include _navigation.html %}
    </header>
    <main>
        <h2>{{ title }}</h2>
        {{ content }}
    </main>
    {% include _footer.html %}
    {% include _content_templates.html %}
    {% include _blueimp_gallery_templates.html %}
</body>

</html>

map.html

---
title: Places of First Issue
layout: _template.html
---
<div id="map">   </div>