15 lines
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
@include(snippets/header)
 | 
						|
 | 
						|
<h3>Top10 ({{ year }}-{{ month }})</h3>
 | 
						|
<table class="table">
 | 
						|
  @each(f0cks as f0ck)
 | 
						|
  <tr>
 | 
						|
    <td><a href="//w0bm.com/{{ f0ck.id }}"><img src="//w0bm.com/t/{{ f0ck.id }}.webp" /></a></td>
 | 
						|
    <td><a href="//w0bm.com/{{ f0ck.id }}">{{ f0ck.id }}</a></td>
 | 
						|
    <td>{{ f0ck.username }}</td>
 | 
						|
  </tr>
 | 
						|
  @endeach
 | 
						|
</table>
 | 
						|
 | 
						|
@include(snippets/footer)
 |