Skip to content

Instantly share code, notes, and snippets.

@tbranyen
Last active August 29, 2015 14:01
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 tbranyen/4566f973c6771590c63c to your computer and use it in GitHub Desktop.
Save tbranyen/4566f973c6771590c63c to your computer and use it in GitHub Desktop.
{%inject "layouts/index" as "content"%}
<section class="home-page center">
<ul class="posts">
{%each posts as post%}
<li class="post">
<a href="/post/{{post.slug}}"><h2>{{post.title}}</h2></a>
</li>
{%endeach%}
</ul>
</section>
{%endinject%}
<!doctype html>
<html lang="en">
<head>
<title>{{title}}</title>
</head>
<body>
{%partial content%}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment