|
25 | 25 | <script defer src="{{ '/js/fontawesome.all.min.js' | relative_url }}"></script> |
26 | 26 | <script src="{{ '/js/index.js' | relative_url }}"></script> |
27 | 27 | {% if page.icon %} |
28 | | - <link rel="icon" type="image/x-icon" href="{{ page.icon }}"> |
| 28 | + <link rel="icon" type="image/x-icon" href="{{ page.icon }}"> |
29 | 29 | {% else %} |
30 | | - <link rel="icon" type="image/x-icon" href="/assets/favicon.ico"> |
| 30 | + <link rel="icon" type="image/x-icon" href="/assets/favicon.ico"> |
31 | 31 | {% endif %} |
32 | 32 | </head> |
33 | 33 |
|
34 | 34 | <body> |
35 | 35 | <center> |
36 | | - <section class="hero"> |
37 | | - <div class="hero-body"> |
38 | | - <div class="container is-max-desktop"> |
39 | | - <div class="columns is-centered"> |
40 | | - <div class="column has-text-centered"> |
41 | | - <h1 class="title is-1 publication-title">{{ page.title }}</h1> |
42 | | - <h3 class="title is-3 publication-title">{{ page.venue }}</h3> |
43 | | - <div class="is-size-5 publication-authors"> |
44 | | - {% for author_id in page.authors %} |
45 | | - {% if site.data.authors_external[author_id.name] != nil %} |
46 | | - {% assign author = site.data.authors_external[author_id.name] %} |
47 | | - {% endif %} |
48 | | - {% if site.data.authors_internal[author_id.name] != nil %} |
49 | | - {% assign author = site.data.authors_internal[author_id.name] %} |
50 | | - {% endif %} |
51 | | - <span class="author-block"> |
52 | | - <a href="{{author.website}}" target="_blank">{{ author.first_name }} {{ author.middle_name }} {{ author.last_name }}</a><sup>{% if author_id.equal_contribution != nil %}*{% endif %}{{ author_id.affiliations }}</sup> |
53 | | - </span> |
54 | | - {% endfor %} |
55 | | - </div> |
56 | | - <div class="is-size-5 publication-affiliations"> |
57 | | - {% assign i = 1 %} |
58 | | - {% for aff_id in page.affiliations %} |
59 | | - {% assign affiliation = site.data.affiliations[aff_id.name] %} |
60 | | - <span class="affiliation-block"> |
61 | | - <sup>{{i}}</sup>{{affiliation[aff_id.length]}} |
62 | | - </span> |
63 | | - {% assign i = i|plus:1 %} |
64 | | - {% endfor %} |
65 | | - </div> |
66 | | - <div class="column has-text-centered"> |
67 | | - <div class="publication-links"> |
68 | | - {% for link in page.links %} |
69 | | - {% if link.name != "Project Page" %} |
70 | | - <span class="link-block"> |
71 | | - <a href="{{ link.link }}" target="_blank" class="external_link button is-normal is-rounded is-dark"> |
72 | | - <span class="icon"> |
73 | | - {% if link.style != nil %} |
74 | | - <i class="{{link.style}}"></i> |
75 | | - {% else %} |
76 | | - <i class="fas fa-external-link-alt"></i> |
77 | | - {% endif %} |
78 | | - </span> |
79 | | - <span>{{link.name}}</span> |
80 | | - </a> |
81 | | - </span> |
82 | | - {% endif %} |
83 | | - {% endfor %} |
84 | | - </div> |
85 | | - </div> |
86 | | - </div> |
87 | | - </div> |
88 | | - </div> |
89 | | - </div> |
90 | | - </section> |
91 | | - </center> |
92 | | - <!-- Content --> |
93 | | - {{ page.content }} |
94 | | - <section class="hero teaser"> |
95 | | - <div class="container is-max-desktop"> |
96 | | - <div class="hero-body"> |
97 | | - <!-- citation --> |
98 | | - {% if page.citation != nil %} |
99 | | - <h2>Citation <a onclick="CopyToClipboard('{{page.citation}}')" class="btn btn--primary"> |
100 | | - <i class="fa fa-copy"></i> |
101 | | - </a></h2> |
102 | | - <pre> |
103 | | -<code id="citation_block"> |
104 | | -</code> |
105 | | - </pre> |
106 | | - <script src="{{ site.baseurl }}{% link js/copy_to_clipboard.js %}"></script> |
107 | | - <script> |
108 | | - document.getElementById("citation_block").innerHTML = formateCitationHTML("{{page.citation}}"); |
109 | | - </script> |
110 | | - {% endif %} |
111 | | - </div> |
112 | | - </div> |
113 | | - </section> |
114 | | - <!-- Acknowledgements --> |
115 | | - {% if page.acknowledgements != nil %} |
116 | | - <footer class="footer"> |
117 | | - <div class="container"> |
118 | | - <div class="columns is-centered"> |
119 | | - <div class="column is-8"> |
120 | | - <div class="content"> |
121 | | - <h2>Acknowledgements</h2> |
122 | | - <p> |
123 | | - {{page.acknowledgements}} |
124 | | - </p> |
125 | | - </div> |
126 | | - </div> |
127 | | - </div> |
128 | | - </div> |
129 | | - </footer> |
130 | | - {% endif %} |
| 36 | + {% include header.html %} |
| 37 | + </center> |
| 38 | + <!-- Content --> |
| 39 | + {{ page.content }} |
| 40 | + |
| 41 | + {% include citation.html %} |
| 42 | + <!-- Acknowledgements --> |
| 43 | + |
| 44 | + {% include acknowledgements.html %} |
131 | 45 | </body> |
132 | 46 |
|
133 | 47 | </html> |
|
0 commit comments