This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2015-10-31 11:10:58 -04:00
|
|
|
{{! overview.mustache
|
|
|
|
|
paramters:
|
|
|
|
|
|
|
|
|
|
- overview (list of PostModels in order of last posted)
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
<table id="overview_graph">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Newsgroup</th>
|
|
|
|
|
<th>Posted</th>
|
|
|
|
|
<th>Subject</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#overview}}
|
|
|
|
|
<tr>
|
2015-10-31 11:34:19 -04:00
|
|
|
<td><a href="{{Prefix}}{{Board}}-0.html">{{Board}}</td>
|
2015-10-31 11:10:58 -04:00
|
|
|
<td>{{Date}}</td>
|
2015-10-31 12:42:16 -04:00
|
|
|
<td><a href="{{PostURL}}">{{Truncate.Subject}}</a></td>
|
2015-10-31 11:10:58 -04:00
|
|
|
</tr>
|
|
|
|
|
{{/overview}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|