20 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
|  | <!DOCTYPE html>
 | ||
|  | <html lang="{{ site.locale|default('en') }}">
 | ||
|  |   <head>
 | ||
|  |     <meta charset="UTF-8">
 | ||
|  |     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | ||
|  |     <meta name="viewport" content="width=device-width, initial-scale=1">
 | ||
|  |     <title>{{ site.name|default('Sculpin Skeleton') }}</title>
 | ||
|  |     <link rel="stylesheet" href="/css/styles.css">
 | ||
|  |   </head>
 | ||
|  |   <body>
 | ||
|  |     <div class="container">
 | ||
|  |       {% block content_wrapper %}
 | ||
|  |         <h1>{{ page.title }}</h1>
 | ||
|  | 
 | ||
|  |         {% block content %}{% endblock %}
 | ||
|  |       {% endblock %}
 | ||
|  |     </div>
 | ||
|  |   </body>
 | ||
|  | </html>
 |