artikel-vorlage/pandoc-template.html

97 lines
2.1 KiB
HTML
Raw Normal View History

2014-09-12 14:36:30 +02:00
<!DOCTYPE html>
<html$if(lang)$ lang="$lang$"$endif$>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
$for(author-meta)$
<meta name="author" content="$author-meta$">
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$">
$endif$
<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
<style type="text/css">code{white-space: pre;}</style>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
$if(quotes)$
<style type="text/css">q { quotes: "“" "”" "" ""; }</style>
$endif$
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$">
$endfor$
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
$for(include-before)$
$include-before$
$endfor$
2014-09-21 20:42:10 +02:00
2014-09-12 14:36:30 +02:00
<header>
2014-09-21 20:42:10 +02:00
<div class="author">
<b>$for(author)$$author.name$$sep$, $endfor$</b>
</div>
2014-09-12 14:36:30 +02:00
<h1 class="title">$title$</h1>
2014-09-21 20:42:10 +02:00
<h2 class="abstract">Zusammenfassung</h2>
<p>$abstract$</p>
<h3 class="keywords">Schlüsselwörter</h3>
<p>$for(keywords)$$keywords$$sep$, $endfor$</p>
<h2>$title-en$</h2>
<h3 class="abstract">Abstract</h3>
<p>$abstract-en$</p>
<h3>Keywords</h3>
<p>$for(keywords-en)$$keywords-en$$sep$, $endfor$</p>
<h3>Classification</h3>
<p>$for(jita)$$jita$$sep$, $endfor$</p>
<hr>
<p>
<b>Einreichung / Annahme / Veröffentlichung:</b>
$received$ / $accepted$ / $published$
</p>
2014-09-12 14:36:30 +02:00
</header>
2014-09-21 20:42:10 +02:00
2014-09-12 14:36:30 +02:00
$if(toc)$
<nav id="$idprefix$TOC">
$toc$
</nav>
$endif$
$body$
2014-09-21 20:42:10 +02:00
<h2>AutorInnen</h2>
<ul>
$for(author)$
<li>
<div>$author.name$$if(author.email)$, $author.email$$endif$</div>
<div>
$if(author.affiliation)$$author.affiliation$$if(author.address)$, $endif$$endif$$if(author.address)$$author.address$$endif$
</div>
$if(author.url)$<div><a href="$author.url$">$author.url$</a></div>$endif$
<!-- TODO: author.orcid oder gnd -->
</li>
$endfor$
</ul>
2014-09-12 14:36:30 +02:00
$for(include-after)$
$include-after$
$endfor$
</body>
</html>