43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{meta.title}}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
|
<meta name="theme-color" content="#000000">
|
|
<meta name="robots" content="index, follow">
|
|
<meta property="og:title" content="{{meta.title}}">
|
|
<meta property="og:description" content="{{meta.description}}">
|
|
<link rel="stylesheet" href="/assets/theme.css">
|
|
<link rel="shortcut icon" type="image/svg" href="/assets/favicon.svg">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
{{#nav}}
|
|
<a href="{{url}}">{{title}}</a>
|
|
{{/nav}}
|
|
</nav>
|
|
<main>
|
|
{{{body}}}
|
|
<section class="pubs">
|
|
{{#pubs}}
|
|
<ul data-year="{{year}}">
|
|
{{#pubs}}
|
|
<li id="{{slug}}">
|
|
<p class="title"><a href="{{slug}}">{{title}}</a></p>
|
|
<p class="authors">{{{authors}}}</p>
|
|
<p class="venue"><a href="{{venue.url}}">{{venue.name}}</a></p>
|
|
<p class="buttons">
|
|
{{#file}}<a href="{{url}}">PDF</a>{{/file}}
|
|
{{#doi}}<a href="https://doi.org/{{doi}}">DOI</a>{{/doi}}
|
|
</p>
|
|
</li>
|
|
{{/pubs}}
|
|
</ul>
|
|
{{/pubs}}
|
|
</section>
|
|
</main>
|
|
<footer>2023 · <a href="https://creativecommons.org/licenses/by-nc/2.0/">CC BY-NC 2.0</a> · generated with <a href="https://achille.acatalepsie.fr/">achille</a></footer>
|
|
</body>
|
|
</html>
|