-
Notifications
You must be signed in to change notification settings - Fork 36
/
atom.xml
39 lines (39 loc) · 1.64 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.name }}</title>
<link href="http://{{ site.domain }}/atom.xml" rel="self"/>
<link href="http://{{ site.domain }}"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://{{ site.domain }}/</id>
<author>
<name>{{site.name | xml_escape}}</name>
<email>{{ site.email }}</email>
</author>
{% assign months = "enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre" | split: "|" %}
{% for post in site.posts limit:20 %}
<entry>
<title>
{{ post.title }} ({{post.date | date: "%d-%m-%Y"}})
</title>
<link href="http://{{ site.domain }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://{{ site.domain }}{{ post.id }}</id>
<content type="html">
{{ post.content | xml_escape }}
{% if post.layout == 'post-jsonld' %}
{% assign m = post.date | date: "%-m" | minus: 1 %}
{% assign day = post.date | date: "%d" %}
{% assign month = months[m] %}
{% assign year = post.date | date: "%Y" %}
<h3 id="localizacion">LOCALIZACIÓN</h3>
<p>Lugar: <strong><a href="{{page.map}}">{{post.place}}, {{post.street}}</a></strong>, {{post.locality}}.</p>
<p>Fecha: <strong>{{day}} de {{month}} del {{year}}</strong></p>
<p>Hora: <strong>de {{post.startDate | date: "%H:%M" }} a {{ post.endDate | date: "%H:%M" }}</strong></p>
{% endif %}
</content>
</entry>
{% endfor %}
</feed>