34 lines
		
	
	
		
			814 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			814 B
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
<!-- Basic Page Needs
 | 
						|
   -->
 | 
						|
  <meta charset="utf-8">
 | 
						|
  {% if title %}
 | 
						|
   <title>{{ title }}</title>
 | 
						|
  {% endif %}
 | 
						|
<!-- Mobile Specific Metas
 | 
						|
   -->
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1 shrink-to-fit=no">
 | 
						|
<!-- FONT
 | 
						|
  -->
 | 
						|
  <!-- <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> -->
 | 
						|
<link rel="stylesheet" href="../static/stylesheet.css">
 | 
						|
<link rel="icon" type="image/jpg" href="../static/coffeeshop-logo.jpg">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<!-- Primary Page Layout
 | 
						|
   -->
 | 
						|
<div style="margin-top:5%; margin-left:5%">
 | 
						|
 <div style="width:100%;">
 | 
						|
  <div style="width: 80%; height: 100px; float: left;">
 | 
						|
     {% block info %}
 | 
						|
     {% endblock %}
 | 
						|
  </div>
 | 
						|
 </div>
 | 
						|
</div>
 | 
						|
<!-- End Document
 | 
						|
   -->
 | 
						|
</body>
 | 
						|
</html>
 |