mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-31 14:18:32 +00:00 
			
		
		
		
	
		
			
	
	
		
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | --- | ||
|  |   permalink: "feed.xml" | ||
|  |   eleventyExcludeFromCollections: true | ||
|  | --- | ||
|  | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <feed xmlns="http://www.w3.org/2005/Atom"> | ||
|  |   <title>{{ metadata.title }}</title> | ||
|  |   <subtitle>{{ metadata.description }}</subtitle> | ||
|  |   <link href="{{ metadata.feedPermalink | absoluteUrl(metadata.url) }}" rel="self"/> | ||
|  |   <link href="{{ metadata.url }}"/> | ||
|  |   <updated>{{ collections.definedWords | rssLastUpdatedDate }}</updated> | ||
|  |   <id>{{ metadata.url }}</id> | ||
|  |   <author> | ||
|  |     <name>{{ metadata.author.name_safe }}</name> | ||
|  |     <email>{{ metadata.author.email }}</email> | ||
|  |   </author> | ||
|  |   {%- for post in collections.definedWordsChronological %} | ||
|  |   {% set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset %} | ||
|  |   <entry> | ||
|  |     <title>{{ post.data.title }}</title> | ||
|  |     <link href="{{ absolutePostUrl }}"/> | ||
|  |     <updated>{{ post.date | rssDate }}</updated> | ||
|  |     <id>{{ absolutePostUrl }}</id> | ||
|  |     <content type="html">{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content> | ||
|  |   </entry> | ||
|  |   {%- endfor %} | ||
|  | </feed> |