summaryrefslogtreecommitdiff
path: root/data/templates/default.tei
blob: 3778dccd5dbee1fc9c9a77c9a7a3b66409dee99b (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
<?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>
$if(title)$
      <title>$title$</title>
$endif$
$for(author)$
      $author$
$endfor$
    </titleStmt>
    <publicationStmt>
      <p>$if(publicationStmt)$$publicationStmt$$endif$</p>
      $if(license)$
      <availability><licence>$license$</licence></availability>
$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>