Skip to content

Commit

Permalink
Initial TEI template.
Browse files Browse the repository at this point in the history
  • Loading branch information
csforste committed Jan 21, 2016
1 parent fea830f commit 71a7bcd
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 0 deletions.
5 changes: 5 additions & 0 deletions default.dzslides
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ $endif$
</footer>
</section>
$endif$
$if(toc)$
<section id="$idprefix$TOC">
$toc$
</section>
$endif$
$for(include-before)$
$include-before$
$endfor$
Expand Down
5 changes: 5 additions & 0 deletions default.s5
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$
Expand Down
5 changes: 5 additions & 0 deletions default.slideous
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$
Expand Down
5 changes: 5 additions & 0 deletions default.slidy
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$
Expand Down
39 changes: 39 additions & 0 deletions default.tei
Original file line number Diff line number Diff line change
@@ -0,0 +1,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>

0 comments on commit 71a7bcd

Please sign in to comment.