mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
31 lines
1020 B
Plaintext
31 lines
1020 B
Plaintext
include _includes/_mixins
|
|
|
|
//- ----------------------------------------------------------------------------
|
|
//- Blog Feed
|
|
//- ----------------------------------------------------------------------------
|
|
|
|
doctype xml
|
|
rss(version='2.0', xmlns:atom='http://www.w3.org/2005/Atom')
|
|
channel
|
|
title= title
|
|
link= url
|
|
description= description
|
|
atom:link(href='#{ url }/feed.xml', rel='self', type='application/rss+xml')
|
|
for post, slug in public.blog._data
|
|
if post.published != false
|
|
item
|
|
title=post.title
|
|
description
|
|
| <![CDATA[
|
|
if post.image
|
|
p: img(src=url + '/blog/img/' + post.image.file)
|
|
|
|
!=partial('blog/' + slug)
|
|
| ]]>
|
|
|
|
if post.date
|
|
pubDate=convertPubDate(post.date)
|
|
|
|
link #{ url }/blog/#{ slug }
|
|
guid(isPermaLink='true') #{ url }/blog/#{ slug }
|