27 lines
827 B
PHTML
27 lines
827 B
PHTML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<title><?=$title?></title>
|
||
|
<?php if ($has_sub_title): ?>
|
||
|
<subtitle><?=$sub_title?></subtitle>
|
||
|
<?php endif; ?>
|
||
|
<link href="<?=$url?>" rel="alternate" type="text/html" />
|
||
|
<link href="<?=$self?>" rel="self" type="application/atom+xml" />
|
||
|
<updated><?=$updated?></updated>
|
||
|
<author>
|
||
|
<name><?=$author_name?></name>
|
||
|
<?php if ($has_author_email): ?>
|
||
|
<email><?=$author_email?></email>
|
||
|
<?php endif; ?>
|
||
|
</author>
|
||
|
<id><?=$id?></id>
|
||
|
<?php foreach ($entries as $entry): ?>
|
||
|
<entry>
|
||
|
<title><?=$entry->title?></title>
|
||
|
<link href="<?=$entry->url?>" />
|
||
|
<id><?=$entry->id?></id>
|
||
|
<updated><?=$entry->date?></updated>
|
||
|
<content type="html"><![CDATA[<?=$entry->content?>]]></content>
|
||
|
</entry>
|
||
|
<?php endforeach; ?>
|
||
|
</feed>
|