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