32 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html5>
 | |
| <html>
 | |
| <head>
 | |
|     {% import "header.html" as header %}
 | |
|     <title>User {{user.username}}</title>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
 | |
|     <link rel="stylesheet" href="/static/common.css">
 | |
| 
 | |
| <style>
 | |
| #content_body
 | |
| {
 | |
|     /* overriding common.css here */
 | |
|     display: block;
 | |
| }
 | |
| </style>
 | |
| </head>
 | |
| 
 | |
| 
 | |
| <body>
 | |
|     {{header.make_header(session=session)}}
 | |
|     <div id="content_body">
 | |
|         <h2>{{user.username}}</h2>
 | |
|         <p>ID: {{user.id}}</p>
 | |
|         <p><a href="/search?author={{user.username}}">Photos by {{user.username}}</a></p>
 | |
|     </div>
 | |
| </body>
 | |
| 
 | |
| 
 | |
| <script type="text/javascript">
 | |
| </script>
 | |
| </html>
 |