diff options
Diffstat (limited to '_site/feed.xml/index.php')
-rw-r--r-- | _site/feed.xml/index.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/_site/feed.xml/index.php b/_site/feed.xml/index.php index 3b03dad..dfb6da7 100644 --- a/_site/feed.xml/index.php +++ b/_site/feed.xml/index.php @@ -15,25 +15,25 @@ $list = getArticlesList(); <!-- - This is Blogchain's RSS feed! + This is UnchainedTech's RSS feed! Only the last 10 articles are shown to preserve your and my bandwidth. - Blogchain is - (c) Blogchain Authors, All rights reserved. + UnchainedTech is + (c) UnchainedTech Authors, All rights reserved. --> <channel> - <title>Blogchain</title> - <link>https://blogchain.minteck.ro.lt</link> - <description>Blogchain is a tech-centric blog written by two people on their free time</description> - <copyright><?= date('Y') ?> Blogchain Authors, All rights reserved.</copyright> + <title>UnchainedTech</title> + <link>https://unchainedtech.minteck.ro.lt</link> + <description>UnchainedTech is a tech-centric blog written by two people on their free time</description> + <copyright><?= date('Y') ?> UnchainedTech Authors, All rights reserved.</copyright> <language>en-us</language> <?php $index = 0; foreach ($list as $item): ?> <?php if ($index < 10 && !$item["admin"]): ?> <item> <title><?= $item["title"] ?></title> - <link>https://blogchain.minteck.ro.lt/article/<?= $item["id"] ?></link> + <link>https://unchainedtech.minteck.ro.lt/article/<?= $item["id"] ?></link> <description><?= $item["content"]["full"] ?></description> <pubdate><?php |