-
Notifications
You must be signed in to change notification settings - Fork 1
/
poster.jinja2
109 lines (99 loc) · 5.14 KB
/
poster.jinja2
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{#
Copyright © 2020 Clément Pit-Claudel
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ webpage_title }}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/default.min.css">
<link rel="stylesheet" href="poster.css">
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1">
<!-- Based on a poster template from https://github.com/cpitclaudel/academic-poster-template -->
{% block mathjax %}
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
{% endblock %}
{% block fonts %}
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
{% endblock %}
{% block custom_head %}
{% endblock %}
</head>
{# For information about the “property” fields below, see https://schema.org/ScholarlyArticle -#}
{# For tips on writing alt text, see https://webaim.org/techniques/alttext/ -#}
<body vocab="http://schema.org/" typeof="ScholarlyArticle">
<header role="banner">
<aside>
{% block project_logos %}
<a href="https://example.com/project"><img src="project-logo.png" alt="Project logo"></a>
{% endblock %}
</aside>
<div>
<h1 property="headline">{{ poster_title }}</h1>
{% if poster_subtitle %}
<h2 property="alternativeHeadline">{{ poster_subtitle }}</h2>
{% endif %}
{% if venue_long %}
<p>in <strong><em>{{ venue_long }}</em></strong> ({{ venue_short }})</p>
{% endif %}
{% block badges %}
<a href="https://example.com"><img alt="Badge 1" src="https://img.shields.io/badge/badge-example%201-brightgreen"></a>
<a href="https://example.com"><img alt="Badge 2" src="https://img.shields.io/badge/badge-example%202-red"></a>
<a href="https://example.com"><img alt="Badge 3" src="https://img.shields.io/badge/badge-example%203-blue"></a>
{% endblock %}
<address>
{% block authors %}
<a property="author">Author 1<sup>a</sup></a>,
<a property="author">Author 2<sup>a</sup></a>,
<a property="author">Author 3<sup>b</sup></a>
{% endblock %}
{% block authors_affiliations_sep %}<br/>{% endblock %}
{% block affiliations %}
<sup>a</sup><a property="sourceOrganization">University A</a>,
<sup>b</sup><a property="sourceOrganization">University B</a>
{% endblock %}
</address>
<span class="publication-info">
{% block publication_info %}
<span property="publisher">{{ venue_short }}</span>,
<time pubdate property="datePublished" datetime="{{ pub_datetime_iso }}">{{ pub_date }}</time>
{% endblock %}
</span>
</div>
<aside>
{% block logos %}
<a href="https://example.com"><img src="institution-logo.png" alt="Institution logo"></a>
{% endblock %}
</aside>
</header>
<main property="articleBody">
{% block contents %}
{# Add content blocks here #}
{% endblock %}
</main>
<footer>
<address class="monospace">
{% block project_link %}
<a href="{{ project_url }}">{{ project_url }}</a>
{% endblock %}
</address>
<address>
{% block contact_info %}{% endblock %}
</address>
{# Feel free to remove the block below, but keep the comment in <head> #}
{#
{% block credits %}
<span class="credits">
based on <a href="https://github.com/cpitclaudel/academic-poster-template"><span class="monospace">academic-poster-template</span></a>
</span>
{% endblock %}
#}
{% block general_info %}{% endblock %}
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>