25 lines
		
	
	
		
			470 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			470 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "_default/base.html" %}
 | 
						|
{% block content %}
 | 
						|
 | 
						|
<!-- home page template, has a banner and rows of page summaries -->
 | 
						|
 | 
						|
{% include "partials/hero.html" %}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<div>
 | 
						|
    {% set page = get_page(path="home/index.md") %}
 | 
						|
    {{page.content | safe}}
 | 
						|
</div>
 | 
						|
 | 
						|
{% include "partials/about.html" %}
 | 
						|
 | 
						|
{% include "partials/feature.html" %}
 | 
						|
 | 
						|
{% include "partials/stats.html" %}
 | 
						|
 | 
						|
{% include "partials/ventures.html" %}
 | 
						|
 | 
						|
{% include "partials/quote.html" %}
 | 
						|
{% endblock content %}
 |