Skip to content

Instantly share code, notes, and snippets.

@oampo
Last active August 29, 2015 14:02
Show Gist options
  • Save oampo/8ad52561445ec13c0d04 to your computer and use it in GitHub Desktop.
Save oampo/8ad52561445ec13c0d04 to your computer and use it in GitHub Desktop.
Pages #crumbs #no-index
ul.list {
list-style-type: none;
padding: 0;
font-size: 2em;
text-align: center;
}
<div class="vertical">
<div class="padded">
<ul class="list">
{{#each gists}}
<li>
<a href="{{path}}">{{title}}</a>
</li>
{{/each}}
</ul>
</div>
</div>
main.onCompileStart = function(gist, context) {
context.gists = gist.app.gistList;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment