Skip to content

Instantly share code, notes, and snippets.

@ThomasPe
Created July 30, 2018 11:19
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 ThomasPe/22a82c93dc43335dcd8838acd6a67b07 to your computer and use it in GitHub Desktop.
Save ThomasPe/22a82c93dc43335dcd8838acd6a67b07 to your computer and use it in GitHub Desktop.
Sample index.mustache
{{> header.mustache}}
<h1>WindowsArea.de News</h1>
<ul>
{{#news}}
<li><a href="{{link}}" target="_blank">{{title.rendered}}</a></li>
{{/news}}
</ul>
<h1>My Links</h1>
<ul>
{{#links}}
<li><a href="{{url}}" target="_blank">{{url}}</a></li>
{{/links}}
</ul>
{{> footer.mustache}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment