20 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
	{% include head.html %}
 | 
						|
	<body>
 | 
						|
		<div class="screen">
 | 
						|
			<div class="screen-image"></div>
 | 
						|
			<div class="screen-content crt">
 | 
						|
				<!-- page content -->
 | 
						|
				<div class="welcome">
 | 
						|
					{{content}}
 | 
						|
					<!-- nav -->
 | 
						|
					{% include nav.html %}
 | 
						|
 | 
						|
				</div>
 | 
						|
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
	</body>
 | 
						|
</html>
 |