17 lines
		
	
	
		
			268 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			268 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		{% if title %}
 | 
						|
		<title>{{ title }} - blog</title>
 | 
						|
		{% else %}
 | 
						|
		<title>Welcome to blog.</title>
 | 
						|
		{% endif %}
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		<div>blgo: <a href="/index">home</a></div>
 | 
						|
		<hr>
 | 
						|
		{% block content %}{% endblock %}
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
 |