public
Description: Simple blogging engine for my personal use, written in C. Yes, C.
Homepage: http://timothylive.net/
Clone URL: git://github.com/highwind/clog.git
clog / atom.ct
100644 24 lines (22 sloc) 0.812 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding='utf-8'?>
 
<feed xmlns="http://www.w3.org/2005/Atom"
    xml:base="http://timothylive.net/clog/entries.atom">
    <id>http://timothylive.net/clog/entries.atom</id>
    <title>TimothyLive.net Blog</title>
    <link rel="self" href="/clog/entries.atom" />
    <link href="http://timothylive.net/clog" />
    <author>
        <name>Timothy Kim</name>
        <email>timothkim@timothylive.net</email>
    </author>
{=loop_begin=}
    <entry>
        <id>{=id=}</id>
        <title>{=title=}</title>
        <link href="http://timothylive.net/clog/{=id=}" />
        <link rel="edit" href="http://timothylive.net/clog/edit/{=id=}.atom" />
        <updated>{=c_time %Y-%m-%dT%H:%M:%SZ=}</updated>
<content type="html"><![CDATA[{=content=}]]></content>
    </entry>
{=loop_end=}
</feed>