12 lines
		
	
	
		
			218 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			218 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{% extends "base.html" %}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{% block content %}
							 | 
						||
| 
								 | 
							
									<h1>Helloo, {{ user.username }}!</h1>
							 | 
						||
| 
								 | 
							
									{% for post in posts %}
							 | 
						||
| 
								 | 
							
									<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
							 | 
						||
| 
								 | 
							
									{% endfor %}
							 | 
						||
| 
								 | 
							
								{% endblock %}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 |