aboutsummaryrefslogtreecommitdiff
path: root/_phpetite/rss.php
blob: 9acd8bcc142f09712e98cb177bcc407f4223516c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
    // Include custom site configurations
include ($_SERVER['DOCUMENT_ROOT'].'_phpetite/_config.php');
    include ($_SERVER['DOCUMENT_ROOT'].'_phpetite/system.php');

    echo '<?xml version="1.0" encoding="utf-8"?>
    <feed xmlns="http://www.w3.org/2005/Atom">
    <title>'.$site_title.'</title>
    <link href="'.$site_url.'/atom.xml" rel="self"/>
    <link href="'.$site_url.'"/>
    <updated>'.date("Y-m-d\TH:i:sP").'</updated>
    <id>'.$site_url.'/</id>
    <author>
      <name>'.$site_author.'</name>
      <email>'.$site_email.'</email>
    </author>'.$rss_items.'</feed>';
?>