26 lines
		
	
	
		
			476 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			476 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{{! 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>
 | 
						|
        <td><a href="{{Prefix}}{{Board}}-0.html">{{Board}}</td>
 | 
						|
        <td>{{Date}}</td>
 | 
						|
        <td><a href="{{PostURL}}">{{Truncate.Subject}}</a></td>
 | 
						|
      </tr>
 | 
						|
    {{/overview}}
 | 
						|
  </tbody>
 | 
						|
</table>
 |