Skip to content

Instantly share code, notes, and snippets.

@andresdhn
Last active August 19, 2021 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andresdhn/a2d44486ac294f547ce0ce91457c0b34 to your computer and use it in GitHub Desktop.
Save andresdhn/a2d44486ac294f547ce0ce91457c0b34 to your computer and use it in GitHub Desktop.
Shows a basic example of a Nunjucks templated page
{% set page_name = 'Home' %}
{% set SEO_description = 'SSG using Nunjucks and Gulp' %}
{% set SEO_keywords = 'SSG, Nunjucks, Gulp, JavaScript' %}
{% extends "layouts/layout.html" %}
{% block content %}
<div id="content">
<div class="container">
<h1>Hello World!</h1>
</div>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment