aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default.tei
blob: 7573478864192c33db0c38eb79edd52504eac641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$>
<teiHeader>
  <fileDesc>
    <titleStmt>
      <title>$title$</title>
$for(author)$
      <author>$author$</author>
$endfor$
    </titleStmt>
    <publicationStmt>
$if(publicationStmt)$
      <p>$if(publicationStmt)$$publicationStmt$$endif$</p>
$endif$
$if(license)$
      <availability><licence>$license$</licence></availability>
$endif$
$if(publisher)$
      <publisher>$publisher$</publisher>
$endif$
$if(pubPlace)$
      <pubPlace>$pubPlace$</pubPlace>
$endif$
$if(address)$
      <address>$address$</address>
$endif$
$if(date)$
      <date>$date$</date>
$endif$
    </publicationStmt>
    <sourceDesc>
$if(sourceDesc)$
      $sourceDesc$
$else$
      <p>Produced by pandoc.</p>
$endif$
    </sourceDesc>
  </fileDesc>
</teiHeader>
<text>
$for(include-before)$
$include-before$
$endfor$
<body>
$body$
</body>
$for(include-after)$
$include-after$
$endfor$
</text>
</TEI>