24 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
	{% include head.html %}
 | 
						|
	<body>
 | 
						|
		<div class="screen">
 | 
						|
			<!-- effects -->
 | 
						|
			{% include screen-effects.html %}
 | 
						|
			<div class="screen-content crt">
 | 
						|
				<!-- header -->
 | 
						|
				{% include header.html %}
 | 
						|
				<!-- nav -->
 | 
						|
				{% include nav.html %}
 | 
						|
				<!-- page content -->
 | 
						|
				<main class="about">
 | 
						|
					{{content}}
 | 
						|
				</main>
 | 
						|
 | 
						|
				<!-- footer -->
 | 
						|
				{% include footer.html %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
	</body>
 | 
						|
</html>
 |