Created
July 30, 2018 11:19
-
-
Save ThomasPe/22a82c93dc43335dcd8838acd6a67b07 to your computer and use it in GitHub Desktop.
Sample index.mustache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{> 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