- How does 11ty handle the data from the OPML blog outline? There is a Markdown template, with some variables in Nunjucks format. 11ty can mix and match template formats, even within the same file. #
 
	- Here's a simplified view of the template (leaving out the pagination commands)#
 
	
	- --#
 
	- permalink: 'archives/{{ page.title | slug }}/'#
 
	- layout: post#
 
	- eleventyComputed:#
 
	
	- ---#
 
	- {{page.content | safe}}#
 
	
	- Pretty simple. The date gets pulled in without even having to mention it!#
 
	
	 
						 
					 
				
				 
			
				
	
	
	- How does 11ty handle the data from the OPML blog outline? There is a Markdown template, with some variables in Nunjucks format. 11ty can mix and match template formats, even within the same file. #
 
	- Here's a simplified view of the template (leaving out the pagination commands)#
 
	
	- --#
 
	- permalink: 'archives/{{ page.title | slug }}/'#
 
	- layout: post#
 
	- eleventyComputed:#
 
	
	- ---#
 
	- {{page.content | safe}}#
 
	
	- Pretty simple. The date gets pulled in without even having to mention it!#