17 lines
		
	
	
		
			332 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			332 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.template.html' -%}
 | |
| 
 | |
| {% block body -%}
 | |
| 
 | |
| {% include "includes/deprecation.html" %}
 | |
| {% include "includes/description.html" %}
 | |
| 
 | |
| <section class="export-list">
 | |
|   <ul>
 | |
|     {% for export in doc.exports -%}
 | |
|     <li><a href="{$ export.path $}">{$ export.name $}</a></li>
 | |
|     {%- endfor %}
 | |
|   </ul>
 | |
| </section>
 | |
| 
 | |
| {%- endblock %}
 |