forked from hero/www_hero_project
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			556 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			556 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "_default/base.html" %}
 | 
						|
{% block content %}
 | 
						|
<!-- mycelium.md page template, has a banner and rows of page summaries -->
 | 
						|
<div>
 | 
						|
    {% set page = get_page(path="mycelium/hero/index.md") %}
 | 
						|
    {{page.content | safe}}
 | 
						|
</div>
 | 
						|
 | 
						|
{% include "partials/newinternet.html" %}
 | 
						|
{% include "partials/grid_stats.html" %}
 | 
						|
 | 
						|
<div>
 | 
						|
    {% set page = get_page(path="mycelium/technologies/index.md") %}
 | 
						|
    {{page.content | safe}}
 | 
						|
</div>
 | 
						|
 | 
						|
<div>
 | 
						|
    {% set page = get_page(path="mycelium/farmer/index.md") %}
 | 
						|
    {{page.content | safe}}
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock content %} |