Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@brandonmwest
Last active December 21, 2015 06:18
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 brandonmwest/6262952 to your computer and use it in GitHub Desktop.
Save brandonmwest/6262952 to your computer and use it in GitHub Desktop.
Example Jekyll layout
<html>
<head>
<title>{{ page.title }}</title>
</head>
<body>
{% include header.html %}
<div class="container">
<article id="content">
{{ content }}
</article>
</div>
{% include footer.html %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment