summaryrefslogtreecommitdiffstats
path: root/default.tei
diff options
context:
space:
mode:
Diffstat (limited to 'default.tei')
-rw-r--r--default.tei39
1 files changed, 39 insertions, 0 deletions
diff --git a/default.tei b/default.tei
new file mode 100644
index 0000000..3778dcc
--- /dev/null
+++ b/default.tei
@@ -0,0 +1,39 @@
1<?xml version="1.0" encoding="utf-8"?>
2<TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$>
3<teiHeader>
4 <fileDesc>
5 <titleStmt>
6$if(title)$
7 <title>$title$</title>
8$endif$
9$for(author)$
10 $author$
11$endfor$
12 </titleStmt>
13 <publicationStmt>
14 <p>$if(publicationStmt)$$publicationStmt$$endif$</p>
15 $if(license)$
16 <availability><licence>$license$</licence></availability>
17$endif$
18 </publicationStmt>
19 <sourceDesc>
20$if(sourceDesc)$
21 $sourceDesc$
22$else$
23 <p>Produced by pandoc.</p>
24$endif$
25 </sourceDesc>
26 </fileDesc>
27</teiHeader>
28<text>
29$for(include-before)$
30$include-before$
31$endfor$
32<body>
33$body$
34</body>
35$for(include-after)$
36$include-after$
37$endfor$
38</text>
39</TEI>