mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
28 lines
380 B
HTML
28 lines
380 B
HTML
<head>
|
|
<title>The Grid</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
{{> loginButtons}}
|
|
</div>
|
|
<div style='clear:both;'></div>
|
|
<div>
|
|
{{> posts}}
|
|
</div>
|
|
</body>
|
|
|
|
<template name="posts">
|
|
<h2>Posts</h2>
|
|
<ul>
|
|
{{#each posts}}
|
|
{{> post}}
|
|
{{/each}}
|
|
</ul>
|
|
</template>
|
|
|
|
<template name="post">
|
|
<li>
|
|
<div class="headline">{{headline}}</div>
|
|
</li>
|
|
</template>
|