18 lines
		
	
	
		
			548 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			548 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>
 | 
						|
                says:
 | 
						|
                <br>
 | 
						|
                {{ post.body }}
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
    </table>
 |