My blog
https://blog.franco.net.eu.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.3 KiB
68 lines
2.3 KiB
--- |
|
layout: null |
|
permalink: feed.xml |
|
--- |
|
<?xml version="1.0" encoding="utf-8" ?> |
|
<feed xmlns="http://www.w3.org/2005/Atom"> |
|
|
|
<title>{{ site.title | xml_escape }}</title> |
|
<subtitle>{{ site.description | xml_escape }}</subtitle> |
|
<link href="{{ site.baseurl }}/" rel="alternate"/> |
|
<link href="{{ site.baseurl | append: feed.xml }}" rel="self"/> |
|
<rights>Copyright @ |
|
{{ site.time | date: '%Y' }}, |
|
{{ site.author.name | xml_escape }}</rights> |
|
<icon>{{ site.baseurl }}/assets/favicon.png</icon> |
|
|
|
<author> |
|
<name>{{ site.author.name | xml_escape }}</name> |
|
<uri>{{ site.baseurl }}</uri> |
|
<email>{{ site.author.email | xml_escape }}</email> |
|
</author> |
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated> |
|
<id>{{ site.baseurl }}/</id> |
|
<generator version="{{ jekyll.version }}">Jekyll</generator> |
|
|
|
|
|
{% for page in site.software %} |
|
{% capture release_excerpt %} |
|
{% assign start=page.content | split: '<!--last_release_start-->' | last %} |
|
{% assign end=start | split: '<!--last_release_end-->' | first %} |
|
{{ end }} |
|
{% endcapture %} |
|
|
|
{% assign content = release_excerpt | replace: "↩", "↩︎" %} |
|
{% assign content = content | replace: "data-lang", "lang" %} |
|
{% assign content = content | replace: "<mark>", "<b>" | replace: "</mark>", "</b>" %} |
|
<entry> |
|
<title type="html">{{ page.title | xml_escape }} (version {{ page.last_version | xml_escape }})</title> |
|
<id>{{ page.url | prepend: site.baseurl }}</id> |
|
<updated>{{ page.updated | date_to_xmlschema }}</updated> |
|
<published>{{ page.date | date_to_xmlschema }}</published> |
|
<content type="html" xml:lang="en"> |
|
<![CDATA[{{ content }}]]> |
|
</content> |
|
</entry> |
|
{% endfor %} |
|
|
|
|
|
{% for post in site.posts %} |
|
|
|
{% assign content = post.content | replace: "↩", "↩︎" %} |
|
{% assign content = content | replace: "data-lang", "lang" %} |
|
{% assign content = content | replace: "<mark>", "<b>" | replace: "</mark>", "</b>" %} |
|
|
|
<entry> |
|
<title type="html">{{ post.title | xml_escape }}</title> |
|
<id>{{ post.url | prepend: site.baseurl }}</id> |
|
<updated>{{ post.updated | date_to_xmlschema }}</updated> |
|
<published>{{ post.date | date_to_xmlschema }}</published> |
|
<content type="html" xml:lang="en"> |
|
<![CDATA[{{ content }}]]> |
|
</content> |
|
</entry> |
|
|
|
{% endfor %} |
|
|
|
</feed>
|
|
|