blob: 214a553aff5e8dbce862b77b171ec6ff624a8ff5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
---
<?xml version="1.0" encoding="utf-8"?>
<opml version="2.0">
<head>
<title>Mayx Blogroll</title>
<ownerName>{{ site.author }}</ownerName>
</head>
<body>{% for item in site.data.links %}
<outline text="{{ item.title | xml_escape }}" title="{{ item.title | xml_escape }}" {% if item.description %}description="{{ item.description | xml_escape }}" {% endif %}{% if item.feed_url %}type="rss" xmlUrl="{{ item.feed_url }}" {% else %}type="link" {% endif %}htmlUrl="{{ item.link }}" />{% endfor %}
</body>
</opml>
|