Created basic homepage displaying feeds and entries.
[~jspiros/reader.git] / templates / reader / base.html
diff --git a/templates/reader/base.html b/templates/reader/base.html
new file mode 100644 (file)
index 0000000..f9c5865
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+       <head>
+               <title>{% block title %}Reader{% endblock %}</title>
+               {% block extrahead %}{% endblock %}
+       </head>
+       <body>
+               {% block body %}{% endblock %}
+       </body>
+</html>