34 lines
		
	
	
		
			610 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			610 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<link rel="stylesheet" href="{{ url_for('static', filename='simple.css') }}">
 | 
						|
		{% if title %}
 | 
						|
		<title>{{ title }} - blog</title>
 | 
						|
		{% else %}
 | 
						|
		<title>Welcome to blog.</title>
 | 
						|
		{% endif %}
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		<div>
 | 
						|
			blgo:
 | 
						|
			<a href="{{ url_for('index') }}">home</a>
 | 
						|
			<a href="{{ url_for('login') }}">login</a>
 | 
						|
 | 
						|
		</div>
 | 
						|
		<hr>
 | 
						|
		{% with messages = get_flashed_messages() %}
 | 
						|
		{% if messages %}
 | 
						|
		<ul>
 | 
						|
			{% for message in messages %}
 | 
						|
			<li>{{ message }}</li>
 | 
						|
			{% endfor %}
 | 
						|
		</ul>
 | 
						|
		{% endif %}
 | 
						|
		{% endwith %}
 | 
						|
 | 
						|
 | 
						|
		{% block content %}{% endblock %}
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
 |