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