forked from KEMT/zpwiki
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			309 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			309 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: Kategórie
 | 
						|
redirect: 'taxonomy?name=category'
 | 
						|
 | 
						|
content:
 | 
						|
    items: @self.children
 | 
						|
 | 
						|
cache_enable: false
 | 
						|
twig_first: true
 | 
						|
process:
 | 
						|
    markdown: false
 | 
						|
    twig: true
 | 
						|
---
 | 
						|
 | 
						|
<h1>Kategórie</h1>
 | 
						|
<ul>
 | 
						|
{% for p in page.collection %}
 | 
						|
    <li><a href="{{ p.url }}">{{ p.title }}</a></li>
 | 
						|
{% endfor %}
 | 
						|
</ul>
 | 
						|
 |