blog: add feed, s/utf8/utf-8 in charset

This commit is contained in:
Michael Stapelberg 2010-10-17 19:14:55 +02:00
parent 54fcc5fc3e
commit ef381e1e85
2 changed files with 26 additions and 1 deletions

View File

@ -1,8 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf8"> <meta charset="utf-8">
<link rel="icon" type="image/png" href="/favicon.png"> <link rel="icon" type="image/png" href="/favicon.png">
<link rel="alternate" type="application/atom+xml" title="Atom feed of i3.zekjur.net/blog" href="/blog/atom.xml">
<meta name="description" content="i3 is a dynamic tiling window manager with clean, readable and documented code, featuring extended XRandR support, usage of libxcb instead of xlib and several improvements over wmii"> <meta name="description" content="i3 is a dynamic tiling window manager with clean, readable and documented code, featuring extended XRandR support, usage of libxcb instead of xlib and several improvements over wmii">
<meta name="keywords" content="i3, window, manager, tiling, keyboard, wmii, x11, xcb, xinerama, utf8"> <meta name="keywords" content="i3, window, manager, tiling, keyboard, wmii, x11, xcb, xinerama, utf8">
<meta name="author" content="i3 developers"> <meta name="author" content="i3 developers">

24
blog/atom.xml Normal file
View File

@ -0,0 +1,24 @@
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>i3.zekjur.net/blog/</title>
<link href="http://i3.zekjur.net/blog/atom.xml" rel="self"/>
<link href="http://i3.zekjur.net/blog" />
<author>
<name>i3 developers</name>
</author>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://i3.zekjur.net/blog/</id>
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://i3.zekjur.net/{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>