Skip to content

Instantly share code, notes, and snippets.

@neilkinnish
Created May 19, 2014 16:50
Show Gist options
  • Save neilkinnish/90c5f8c9867d3b0c773e to your computer and use it in GitHub Desktop.
Save neilkinnish/90c5f8c9867d3b0c773e to your computer and use it in GitHub Desktop.
Layout...
{% block vars %}{% endblock %}
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<title>{{ pageTitle }}</title>
</head>
<body>
</body>
</html>
Blog (page we created - quick example)...
{% collection %}
{% assign collectionItem = collection.items.first %}
{% endcollection %}
{% block vars %}
{% assign pageTitle = collectionItem.title %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment