escot/content/index.mustache

43 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2023-01-25 20:29:49 +00:00
<!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}}">
2023-01-26 17:00:24 +00:00
<p class="title"><a href="#{{slug}}">{{title}}</a></p>
2023-01-25 20:29:49 +00:00
<p class="authors">{{{authors}}}</p>
<p class="venue"><a href="{{venue.url}}">{{venue.name}}</a></p>
<p class="buttons">
2023-01-26 17:00:24 +00:00
{{#file}}<a href="{{file}}">PDF</a>{{/file}}
2023-01-25 20:29:49 +00:00
{{#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>