diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-03-06 19:40:54 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-03-06 19:40:54 +0100 |
commit | 030a08de1849ea83f49465fde8cf7ca9e4b8451a (patch) | |
tree | b3a819b006b836a2e23f9b62cd71f706ec1de1b2 | |
parent | 8b81e09d72f6c2c1a54e84a42dfae85422209088 (diff) |
Split header.st into header_start.st and header_end.st.
-rw-r--r-- | header.st | 13 | ||||
-rw-r--r-- | header_end.st | 10 | ||||
-rw-r--r-- | header_start.st | 15 |
3 files changed, 27 insertions, 11 deletions
@@ -1,14 +1,5 @@ -<?xml version="1.0" ?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <title>$title$ — Gödel-Gentzen Clojure Syndication Services Super System</title> - <link rel="stylesheet" href="/layout.css" type="text/css" /> -</head> - -<body> +$header_start(title=title)$ +$header_end()$ $! Local Variables: diff --git a/header_end.st b/header_end.st new file mode 100644 index 0000000..0c79e12 --- /dev/null +++ b/header_end.st @@ -0,0 +1,10 @@ +</head> + +<body> + +$! +Local Variables: + mode: html + coding: utf-8 +End: +!$ diff --git a/header_start.st b/header_start.st new file mode 100644 index 0000000..61285b7 --- /dev/null +++ b/header_start.st @@ -0,0 +1,15 @@ +<?xml version="1.0" ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>$title$ — Gödel-Gentzen Clojure Syndication Services Super System</title> + <link rel="stylesheet" href="/layout.css" type="text/css" /> + +$! +Local Variables: + mode: html + coding: utf-8 +End: +!$ |