Templating
Jekyll allows users to build their HTML templates using the template language Liquid built and used by the popular eCommerce application Shopify.
Liquid
Liquid is best described as a safe, customer-facing template language for flexible web apps.
An example of Liquid:
<html>
<head>
<title>{{ title }}</title>
</head>
<body>
<div id="content">
<p>
This is a long page content
These lines are all part of the parent p
<a href="/">Go To Main Page</a>
</p>
</div>
</body>
</html>
See the Front Matter Fields documentation for examples of how to use Forestry in your templates.
July 24, 2017
Caught a mistake or want to contribute to the docs? Edit this page on Github!