blob: 81735d3a76b98890b3be2b16a76db41cf4ad3955 [file] [log] [blame]
brentthorneedd17762019-04-09 12:35:49 -04001<!DOCTYPE html>
2<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
3<head>
4<meta charset="utf-8" />
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<meta name="generator" content="pandoc" />
7<meta name="viewport" content="width=device-width, initial-scale=1">
8
9$for(author-meta)$<meta name="author" content="$author-meta$" />$endfor$
10$if(date-meta)$<meta name="date" content="$date-meta$" />$endif$
11<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
12
13$for(header-includes)$
14$header-includes$
15$endfor$
16
17$if(highlightjs)$
18<link rel="stylesheet" href="$highlightjs$/$if(highlightjs-theme)$$highlightjs-theme$$else$default$endif$.css" $if(html5)$$else$type="text/css" $endif$/>
19<script src="$highlightjs$/highlight.js"></script>
20<script type="text/javascript">hljs.configure({languages: []}); hljs.initHighlightingOnLoad();</script>
21$endif$
22
23$if(highlighting-css)$<style type="text/css">$highlighting-css$</style>$endif$
24
25$for(css)$
26<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
27$endfor$
28
29<!--
30Font-awesome icons ie github or twitter
31-->
32<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
33<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/brands.css" integrity="sha384-n9+6/aSqa9lBidZMRCQHTHKJscPq6NW4pCQBiMmHdUCvPN8ZOg2zJJTkC7WIezWv" crossorigin="anonymous">
34
35<!--
36Google fonts api stuff
37-->
brentthorned1573922019-06-27 13:31:11 -040038<link href='https://fonts.googleapis.com/css?family=$if(main_fontfamily)$$main_fontfamily$$else$Special Elite$endif$' rel='stylesheet'>
brentthorne2a9d4292019-07-21 11:24:57 -040039<link href='https://fonts.googleapis.com/css?family=$if(font_family)$$font_family$$else$Rasa$endif$' rel='stylesheet'>
brentthorneedd17762019-04-09 12:35:49 -040040
41<!--
42Here are the required style attributes for css to make this poster work :)
43-->
44<style>
45@page {
brentthorned1573922019-06-27 13:31:11 -040046size: $if(poster_width)$$poster_width$$else$36in$endif$ $if(poster_height)$$poster_height$$else$48in$endif$;
brentthorneedd17762019-04-09 12:35:49 -040047margin: 0;
48padding: 0;
49}
50body {
51margin: 0px;
52padding: 0px;
brentthorned1573922019-06-27 13:31:11 -040053width: $if(poster_width)$$poster_width$$else$36in$endif$;
54height: $if(poster_height)$$poster_height$$else$48in$endif$;
brentthorneedd17762019-04-09 12:35:49 -040055text-align: justify;
brentthorned1573922019-06-27 13:31:11 -040056font-size: $if(body_textsize)$$body_textsize$$else$45px$endif$;
brentthorne3fbfb912019-05-29 09:29:14 -040057line-height: 1.05;
brentthorneedd17762019-04-09 12:35:49 -040058}
59/* RMarkdown Class Styles */
60/* center align leaflet map,
61from https://stackoverflow.com/questions/52112119/center-leaflet-in-a-rmarkdown-document */
62.html-widget {
63margin: auto;
64position: sticky;
65margin-top: 2cm;
66margin-bottom: 2cm;
67}
68.leaflet.html-widget.html-widget-static-bound.leaflet-container.leaflet-touch.leaflet-fade-anim.leaflet-grab.leaflet-touch-drag.leaflet-touch-zoom {
69position: sticky;
70width: 100%;
71}
brentthornebadbbed2020-01-27 11:27:12 -050072pre.sourceCode.r, pre.sourceCode.python {
brentthorne495e41d2020-01-27 11:35:41 -050073background-color: #ffffff20;
74border: solid $if(secondary_colour)$$secondary_colour$$else$#008080$endif$ 1mm;
75border-radius: 0.5em;
brentthorneedd17762019-04-09 12:35:49 -040076padding: 4mm;
brentthorneedd17762019-04-09 12:35:49 -040077margin: auto;
78margin-top: 1em;
79margin-bottom: 1em;
80/* align-items: center; */
brentthorneedd17762019-04-09 12:35:49 -040081}
brentthorne495e41d2020-01-27 11:35:41 -050082div.sourceCode {
83background-color: transparent;
84width: $if(codechunk_width)$$codechunk_width$$else$85%$endif$;
85margin-left: auto;
86margin-right: auto;
87}
brentthornebadbbed2020-01-27 11:27:12 -050088code.sourceCode.r, code.sourceCode.python {
brentthorneedd17762019-04-09 12:35:49 -040089background-color: transparent;
brentthornebadbbed2020-01-27 11:27:12 -050090font-size: $if(codechunk_textsize)$$codechunk_textsize$$else$20pt$endif$;
brentthorneedd17762019-04-09 12:35:49 -040091border-radius: 2mm;
92}
93code {
94font-size: 25pt;
95font-family: monospace;
brentthorned1573922019-06-27 13:31:11 -040096background-color: $if(secondary_colour)$$secondary_colour$24$else$#00808024$endif$;
brentthorne495e41d2020-01-27 11:35:41 -050097color: $if(secondary_colour)$$secondary_colour$$else$#008080$endif$;
brentthorneedd17762019-04-09 12:35:49 -040098padding: 1.2mm;
brentthorned1573922019-06-27 13:31:11 -040099line-height: 1;
brentthorneedd17762019-04-09 12:35:49 -0400100border-radius: 2mm;
101}
102caption {
103margin-bottom: 10px;
brentthorned1573922019-06-27 13:31:11 -0400104font-size: $if(caption_textsize)$$caption_textsize$$else$20pt$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400105font-style: italic;
106}
brentthorned1573922019-06-27 13:31:11 -0400107
108tbody tr:nth-child(odd) {
109 background-color: $if(secondary_colour)$$secondary_colour$$else$#008080$endif$20;
110}
111.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td{
112 border-spacing: 0;
113 font-size: 40%;
114 border-style: none;
115 padding-top: 15px;
116 padding-bottom: 15px;
117 padding-right: 1em;
118 padding-left: 1em;
119 line-height: 1em;
120}
121table {
122 margin: auto;
123}
124th {
125 padding-left: 5mm;
126 padding-right: 5mm;
127}
brentthorneedd17762019-04-09 12:35:49 -0400128.caption {
brentthorne2a9d4292019-07-21 11:24:57 -0400129font-size: $if(caption_textsize)$$caption_textsize$$else$20pt$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400130font-style: italic;
brentthorned1573922019-06-27 13:31:11 -0400131padding-top: 0;
brentthorneedd17762019-04-09 12:35:49 -0400132}
133.references {
brentthorned1573922019-06-27 13:31:11 -0400134font-size: $if(reference_textsize)$$reference_textsize$$else$20px$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400135line-height: 90%;
136}
137/* Create three unequal columns that floats next to each other */
138.column {
139float: left;
140padding: 0px;
141}
142.outer {
brentthorned1573922019-06-27 13:31:11 -0400143width: $if(poster_width)$$poster_width$$else$36in$endif$;
144height: calc($if(poster_height)$$poster_height$$else$48in$endif$ * $if(main_topsize)$ (1 - $main_topsize$ - $main_bottomsize$ - 0.01) $else$ 0.6325 $endif$);
145-webkit-column-count: $if(column_numbers)$$column_numbers$$else$3$endif$; /* Chrome, Safari, Opera */
146-moz-column-count: $if(column_numbers)$$column_numbers$$else$3$endif$; /* Firefox */
147column-count: $if(column_numbers)$$column_numbers$$else$3$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400148-webkit-column-fill: auto;
149-moz-column-fill: auto;
150column-fill: auto;
151column-gap: 0;
152padding-left: 0cm;
153padding-right: 0cm;
154/* -webkit-column-rule-width: 50%;
155-moz-column-rule-width: 50%;
156column-rule-width: 50%; */
157-webkit-column-rule-style: none;
158-moz-column-rule-style: none;
159column-rule-style: none;
160-webkit-column-rule-color: black;
161-moz-column-rule-color: black;
162column-rule-color: black;
brentthorned1573922019-06-27 13:31:11 -0400163background-color: $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$;
brentthorne2a9d4292019-07-21 11:24:57 -0400164font-family: $if(font_family)$$font_family$$else$Rasa$endif$;
brentthorned1573922019-06-27 13:31:11 -0400165margin-top: calc($if(poster_height)$$poster_height$$else$48in$endif$ * $if(main_topsize)$ $main_topsize$ $else$ 0.25 $endif$);
brentthorneedd17762019-04-09 12:35:49 -0400166padding-top: 1em;
167padding-bottom: 1em;
168}
169span.citation {
brentthorned1573922019-06-27 13:31:11 -0400170 color: $if(secondary_colour)$$secondary_colour$$else$#008080$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400171 font-weight: bold;
172}
173a {
174text-decoration: none;
brentthorned1573922019-06-27 13:31:11 -0400175color: $if(secondary_colour)$$secondary_colour$$else$#008080$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400176}
177#title {
brentthorned1573922019-06-27 13:31:11 -0400178font-size: $if(title_textsize)$$title_textsize$$else$125pt$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400179text-align: left;
brentthorneedd17762019-04-09 12:35:49 -0400180margin: 0;
brentthorne6d8874b2019-04-26 11:02:18 -0400181line-height: 98%;
brentthorneedd17762019-04-09 12:35:49 -0400182border-bottom: 0;
brentthorne6d8874b2019-04-26 11:02:18 -0400183font-weight: normal;
brentthorne2a9d4292019-07-21 11:24:57 -0400184background: 0;
brentthorneedd17762019-04-09 12:35:49 -0400185}
186#author {
brentthorne04e4f662019-11-08 10:35:11 -0500187color:$if(author_textcol)$$author_textcol$$else$$if(primary_colour)$$primary_colour$$else$#0b4545$endif$$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400188margin: 0;
189line-height: 85%;
brentthorned1573922019-06-27 13:31:11 -0400190font-size: $if(author_textsize)$$author_textsize$$else$1.17em$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400191}
192#affiliation {
brentthorne3fbfb912019-05-29 09:29:14 -0400193padding-top: 0.1em;
brentthorneedd17762019-04-09 12:35:49 -0400194color: $affiliation_textcol$;
195font-style: italic;
brentthorned1573922019-06-27 13:31:11 -0400196font-size: $if(affiliation_textsize)$$affiliation_textsize$$else$25px$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400197margin: 0;
198}
199sup {
brentthorned1573922019-06-27 13:31:11 -0400200color: $if(accent_colour)$$accent_colour$$else$#cc0000$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400201}
202.affiliation sup {
203font-size: 20px;
204}
brentthornec983ec62019-04-27 18:50:20 -0400205.author {
206text-align: left;
207}
brentthorneedd17762019-04-09 12:35:49 -0400208.author sup {
209font-size: 30px;
210}
211.author_extra {
brentthorned1573922019-06-27 13:31:11 -0400212color: $if(secondary_colour)$$secondary_colour$$else$#008080$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400213margin: 0;
214line-height: 85%;
brentthorned1573922019-06-27 13:31:11 -0400215font-size: $if(authorextra_textsize)$$authorextra_textsize$$else$35px$endif$;
brentthornec983ec62019-04-27 18:50:20 -0400216text-align: left;
brentthorneedd17762019-04-09 12:35:49 -0400217}
brentthorneb0ce3bb2019-04-26 13:14:20 -0400218.outer h1, h2, h3, h4, h5, h6 {
brentthorneedd17762019-04-09 12:35:49 -0400219text-align: center;
brentthorne3fbfb912019-05-29 09:29:14 -0400220margin: 0;
221font-weight: bold;
222}
223.section h1 {
224 text-align:center;
225 padding-bottom:5px;
226 background:
227 linear-gradient(
228 to left,
brentthorned1573922019-06-27 13:31:11 -0400229 $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$ 1%,
230 $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$ 20%,
231 $if(primary_colour)$$primary_colour$$else$#0b4545$endif$75 33%,
232 $if(primary_colour)$$primary_colour$$else$#0b4545$endif$ 50%,
233 $if(primary_colour)$$primary_colour$$else$#0b4545$endif$75 66%,
234 $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$ 80%,
235 $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$ 99%
brentthorne3fbfb912019-05-29 09:29:14 -0400236 )
237 left
238 bottom
brentthorned1573922019-06-27 13:31:11 -0400239 $if(body_bgcol)$$body_bgcol$$else$#ffffff$endif$
brentthorne3fbfb912019-05-29 09:29:14 -0400240 no-repeat;
241 background-size:100% 5px ;
242 margin-top: 0.5em;
243 margin-bottom: 0.5em;
brentthorneedd17762019-04-09 12:35:49 -0400244}
245.outer h2 {
246text-align: center;
247}
248.outer p, .level2 {
brentthorned1573922019-06-27 13:31:11 -0400249color: $if(body_textcol)$$body_textcol$$else$#000000$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400250}
251.outer ol {
252padding-left: 8%;
253padding-right: 8%;
254text-align: left;
255}
brentthorned1573922019-06-27 13:31:11 -0400256.main {
257width: $if(poster_width)$$poster_width$$else$36in$endif$;
258height: calc($if(poster_height)$$poster_height$$else$48in$endif$ * $if(main_topsize)$$main_topsize$$else$0.25$endif$);
brentthorneedd17762019-04-09 12:35:49 -0400259position: absolute;
brentthorned1573922019-06-27 13:31:11 -0400260background-color: $if(primary_colour)$$primary_colour$$else$#0b4545$endif$;
261color: $if(main_textcol)$$main_textcol$$else$#ffffff$endif$$if(main_textalpha)$$main_textalpha$$else$90$endif$;
262font-family: $if(main_fontfamily)$$main_fontfamily$$else$Special Elite$endif$;
263background-image: linear-gradient($if(primary_colour)$$primary_colour$$else$#0b4545$endif$ 50%,$if(secondary_colour)$$secondary_colour$$else$#008080$endif$);
brentthorneedd17762019-04-09 12:35:49 -0400264}
brentthorned1573922019-06-27 13:31:11 -0400265.main strong {
266color: $if(main_textcol)$$main_textcol$$else$#ffffff$endif$;
brentthorne6d8874b2019-04-26 11:02:18 -0400267}
brentthorned1573922019-06-27 13:31:11 -0400268.main strong > sup {
269color: $if(main_textcol)$$main_textcol$$else$#ffffff$endif$;
brentthorne6d8874b2019-04-26 11:02:18 -0400270}
brentthorned1573922019-06-27 13:31:11 -0400271.main sup {
272color: $if(main_textcol)$$main_textcol$$else$#ffffff$endif$$if(main_textalpha)$$main_textalpha$$else$90$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400273}
brentthorned1573922019-06-27 13:31:11 -0400274#main-img-left {
brentthorneedd17762019-04-09 12:35:49 -0400275width: 10%;
276left: 0.5in;
277bottom: 0.2in;
278position: absolute;
brentthorneedd17762019-04-09 12:35:49 -0400279}
brentthorned1573922019-06-27 13:31:11 -0400280#main-img-center {
brentthorneedd17762019-04-09 12:35:49 -0400281width: 10%;
brentthorned1573922019-06-27 13:31:11 -0400282left: calc($if(poster_width)$$poster_width$$else$36in$endif$ * 0.45);
brentthorneedd17762019-04-09 12:35:49 -0400283bottom: 0.5in;
284position: absolute;
brentthorneedd17762019-04-09 12:35:49 -0400285}
brentthorned1573922019-06-27 13:31:11 -0400286#main-img-right {
brentthorneedd17762019-04-09 12:35:49 -0400287width: 10%;
288right: 0.5in;
289bottom: 0.2in;
290position: absolute;
brentthorneedd17762019-04-09 12:35:49 -0400291}
brentthorned1573922019-06-27 13:31:11 -0400292.main p {
293font-size: $if(main_textsize)$$main_textsize$$else$150px$endif$;
brentthorne2a9d4292019-07-21 11:24:57 -0400294font-family: $if(main_fontfamily)$$main_fontfamily$$else$Special Elite$endif$;
295text-align: $if(main_textalign)$$main_textalign$$else$center$endif$;
brentthorne3fbfb912019-05-29 09:29:14 -0400296margin: 0;
brentthorned1573922019-06-27 13:31:11 -0400297position: absolute;
298top: 50%;
299-ms-transform: translateY(-50%);
300transform: translateY(-50%);
301margin-left: 1em;
brentthorneedd17762019-04-09 12:35:49 -0400302}
303.fab {
brentthornea4fca202020-01-24 16:55:33 -0500304color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400305font-size: 25px;
306}
307.twitter, i {
brentthornea4fca202020-01-24 16:55:33 -0500308color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400309font-size: 35px;
310text-decoration: none;
311}
312a.email {
313text-decoration: none;
brentthornea4fca202020-01-24 16:55:33 -0500314color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400315font-size: 35px;
316}
317.envelope {
brentthornea4fca202020-01-24 16:55:33 -0500318color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400319font-size: 5px;
320text-decoration: none;
321}
brentthornea4fca202020-01-24 16:55:33 -0500322.globe {
323color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
324font-size: 5px;
325text-decoration: none;
326}
327.globetext {
328color: $if(affiliation_textcol)$$affiliation_textcol$$else$#00000060$endif$;
329font-size: 35px;
330text-decoration: none;
331}
brentthorneedd17762019-04-09 12:35:49 -0400332.poster_wrap {
brentthorned1573922019-06-27 13:31:11 -0400333width: $if(poster_width)$$poster_width$$else$36in$endif$;
334height: $if(poster_height)$$poster_height$$else$48in$endif$;
brentthorneedd17762019-04-09 12:35:49 -0400335padding: 0cm;
336}
brentthorned1573922019-06-27 13:31:11 -0400337.main_bottom {
338width: $if(poster_width)$$poster_width$$else$36in$endif$;
339height: calc($if(poster_height)$$poster_height$$else$48in$endif$ * $if(main_bottomsize)$$main_bottomsize$$else$0.1$endif$);
340margin-top: calc($if(poster_height)$$poster_height$$else$48in$endif$ * $if(main_bottomsize)$(1 - $main_bottomsize$)$else$0.9$endif$);
brentthorneedd17762019-04-09 12:35:49 -0400341position: absolute;
brentthorned1573922019-06-27 13:31:11 -0400342background-color: $if(primary_colour)$$primary_colour$$else$#0b4545$endif$;
remlapmotb1d61662019-07-03 14:55:07 +0100343background-image: linear-gradient($if(secondary_colour)$$secondary_colour$$else$#008080$endif$ 10%, $if(primary_colour)$$primary_colour$$else$#0b4545$endif$);
brentthorneedd17762019-04-09 12:35:49 -0400344}
brentthorned1573922019-06-27 13:31:11 -0400345.section {
346 padding-left: $if(column_padding)$$column_padding$$else$10mm$endif$;
347 padding-right: $if(column_padding)$$column_padding$$else$10mm$endif$;
brentthorne3fbfb912019-05-29 09:29:14 -0400348}
brentthorneedd17762019-04-09 12:35:49 -0400349span > #tab:mytable {
350 font-weight: bold;
351}
brentthorneadcc8b62019-07-02 15:17:07 -0400352.orcid img {
353 width: 3%;
354}
brentthorne2a9d4292019-07-21 11:24:57 -0400355.emphasis {
356 background-color: #008080;
357 color: #ffffff;
358 border: solid #0b2045 3mm;
359 margin: 1em;
360 padding-left: 0;
361 padding-right: 0;
362}
363.emphasis h1 {
364 font-weight: bold;
365 background: none;
366 background-color: #0b2045;
367 padding-bottom: 5mm;
368 padding-top: 1mm;
369 margin-top: -1mm;
370 margin-right: -1mm;
371 margin-left: -1mm;
372}
373.emphasis blockquote {
374 border: 0;
375}
376.emphasis ol {
377 padding: 0;
378 padding-left: 8%;
379 font-size: 100%;
380 font-weight: bold;
381}
382.emphasis p {
383 color: #ffffff;
384}
brentthorneedd17762019-04-09 12:35:49 -0400385</style>
Jean Manguy568d9182019-10-23 16:35:52 +0100386$if(custom_css)$
387<link rel="stylesheet" href=$custom_css$>
388$else$$endif$
brentthorneedd17762019-04-09 12:35:49 -0400389</head>
390<body>
391
392$for(include-before)$
393$include-before$
394$endfor$
395
396<div class="poster_wrap">
397
398<div class="column outer">
brentthorned1573922019-06-27 13:31:11 -0400399<div class="section">
400$if(title)$<h1 id="title">$title$</h1><br>$else$$endif$
401$if(author)$<h3 id="author" class="author">
brentthorneedd17762019-04-09 12:35:49 -0400402
403$for(author)$
404$if(author.main)$
brentthorne92b6cad2019-07-05 14:34:59 -0400405$author.name$<sup> $author.affil$$if(author.orcid)$, <a class="orcid" href="https://orcid.org/$author.orcid$"><img src="https://raw.githubusercontent.com/brentthorne/posterdown/master/images/orcid.jpg"></a>$else$$endif$</sup><br>
brentthorneedd17762019-04-09 12:35:49 -0400406$if(author.twitter)$<a class="twitter" href="https://mobile.twitter.com/$author.twitter$"><i class="fab fa-twitter"></i>&nbsp;&nbsp;@$author.twitter$</a><br>
407$else$$endif$
408$if(author.email)$
409<a class='envelope'><i class="fas fa-envelope"></i></a> $author.email$ <br>
410$else$$endif$
brentthornea4fca202020-01-24 16:55:33 -0500411$if(author.website)$
412<a class='globe'><i class="fas fa-globe"></i></a> <a class='globetext' href="$author.website$">$author.website$</a> <br>
413$else$$endif$
brentthorneedd17762019-04-09 12:35:49 -0400414$else$$endif$
415$sep$ $endfor$
416</h3>
417
418<h5 id="author_extra", class="author_extra">
419$for(author)$
420$if(author.main)$
421$else$
brentthorne2a9d4292019-07-21 11:24:57 -0400422$author.name$<sup>$author.affil$$if(author.orcid)$, <a class="orcid" href="https://orcid.org/$author.orcid$"><img src="https://raw.githubusercontent.com/brentthorne/posterdown/master/images/orcid.jpg"></a>$else$$endif$</sup>
brentthorneedd17762019-04-09 12:35:49 -0400423$endif$
424$sep$ $endfor$
425</h5>
brentthorned1573922019-06-27 13:31:11 -0400426$else$$endif$
brentthorneedd17762019-04-09 12:35:49 -0400427
brentthorned1573922019-06-27 13:31:11 -0400428$if(affiliation)$
brentthorneedd17762019-04-09 12:35:49 -0400429<p id="affiliation" class="affiliation">
430$for(affiliation)$<sup>$affiliation.num$</sup> $affiliation.address$$sep$<br> $endfor$
431</p>
brentthorned1573922019-06-27 13:31:11 -0400432$else$$endif$
433</div>
brentthorneedd17762019-04-09 12:35:49 -0400434
435$body$
436
437</div>
brentthorned1573922019-06-27 13:31:11 -0400438<div class="main">
brentthorneedd17762019-04-09 12:35:49 -0400439<p>$for(main_findings)$$main_findings$$sep$<br><br> $endfor$</p>
440</div>
brentthorned1573922019-06-27 13:31:11 -0400441<div class="main_bottom">
442<img id="main-img-left" src=$if(logoleft_name)$$logoleft_name$$else$$endif$>
443<img id="main-img-center" src=$if(logocenter_name)$$logocenter_name$$else$$endif$>
444<img id="main-img-right" src=$if(logoright_name)$$logoright_name$$else$$endif$>
brentthorneedd17762019-04-09 12:35:49 -0400445</div>
446</div>
447
448$if(math)$
449<!-- dynamically load mathjax for compatibility with self-contained -->
450<script>
451(function () {
452var script = document.createElement("script");
453script.type = "text/javascript";
454var src = "$if(mathjax)$$mathjax$$endif$";
455if (src === "" || src === "true") src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-MML-AM_CHTML";
456if (location.protocol !== "file:" && /^https?:/.test(src))
457src = src.replace(/^https?:/, '');
458script.src = src;
459document.getElementsByTagName("head")[0].appendChild(script);
460})();
461</script>
462$endif$
463
464$for(include-after)$
465$include-after$
466$endfor$
467
468</body>
469</html>