18 lines
		
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
|     <table class="table table-hover">
 | |
|         <tr>
 | |
|             <td width="70px">
 | |
|                 <a href="{{ url_for('user', username=post.author.username) }}">
 | |
|                     <img src="{{ post.author.avatar(70) }}" />
 | |
|                 </a>
 | |
|             </td>
 | |
|             <td>
 | |
|                 <a href="{{ url_for('user', username=post.author.username) }}">
 | |
|                     {{ post.author.username }}
 | |
|                 </a>
 | |
|                 said {{ moment(post.timestamp).fromNow() }}:
 | |
|                 <br>
 | |
|                 {{ post.body }}
 | |
|             </td>
 | |
|         </tr>
 | |
|     </table>
 |