15 lines
		
	
	
		
			320 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			320 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en" charset="utf-8">
 | 
						|
  {% include "partials/head.html" %}
 | 
						|
 | 
						|
  {% include "partials/header.html" %}
 | 
						|
 | 
						|
  {%- set section = get_section(path="_index.md") %}
 | 
						|
  <body>
 | 
						|
 | 
						|
    <div id="content">
 | 
						|
    {% block content %}{% endblock %}
 | 
						|
    </div>
 | 
						|
    {% include "partials/footer.html" %}
 | 
						|
  </body>
 | 
						|
</html> |