|
Revision 1173
(checked in by miyagawa, 2 years ago)
|
Merge from refactoring-planet. YAY!
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<opml version="1.0"> |
|---|
| 3 |
<head> |
|---|
| 4 |
<title>[% (conf.title || 'Plagger Subscriptions') | html %]</title> |
|---|
| 5 |
<dateCreated>[% now.format('Mail') %]</dateCreated> |
|---|
| 6 |
<ownerName /> |
|---|
| 7 |
</head> |
|---|
| 8 |
<body> |
|---|
| 9 |
<outline text="Subscriptions"> |
|---|
| 10 |
[% FOREACH feed = feeds -%] |
|---|
| 11 |
<outline title="[% feed.title | html %]" htmlUrl="[% feed.link | html %]" text="[% (feed.primary_author || feed.title) | html %]" type="rss" xmlUrl="[% feed.url | html %]" /> |
|---|
| 12 |
[% END -%] |
|---|
| 13 |
</outline> |
|---|
| 14 |
</body> |
|---|
| 15 |
</opml> |
|---|