|
1 | 1 | <div class="row conf-row"> |
2 | 2 | <div class="col-6"> |
3 | | - <span class="conf-title"> |
4 | | - <a title="Deadline Details" href="{{site.baseurl}}/conference/{{conf.conference | slugify: "latin"}}-{{conf.year}}/">{{conf.conference}} {{conf.year}}</a> |
5 | | - </span> |
6 | | - <span class="conf-title-small"> |
7 | | - <a title="Deadline Details" href="{{site.baseurl}}/conference/{{conf.conference | slugify: "latin"}}-{{conf.year}}/">{{conf.conference}} '{{conf.year | slice: -2, 3}}</a> |
8 | | - </span> |
9 | | - <span class="conf-title-icon"> |
10 | | - <a title="Conference Website" href="{{conf.link}}" target="_blank"><img src="/static/img/203-earth.svg" class="badge-link" alt="Link to Conference Website" width="16" height="16" /></a> |
11 | | - ​ |
12 | | - </span> |
13 | | - {% if conf.cfp_link %} |
14 | | - <span class="conf-title-icon"> |
15 | | - <a title="Call for Participation for {{conf.conference}}" href="{{conf.cfp_link}}" target="_blank"><img src="/static/img/035-file-text.svg" class="badge-link" alt="Link to Call for Participation for {{conf.conference}}" width="16" height="16" /></a> |
16 | | - ​ |
17 | | - </span> |
18 | | - {% endif %} |
19 | | - {% if conf.finaid %} |
20 | | - <span class="conf-title-icon"> |
21 | | - <a title="Financial Aid from {{conf.conference}}" href="{{conf.finaid}}" target="_blank"><img src="/static/img/066-lifebuoy.svg" class="badge-link" alt="Link to Sponsorship page of {{conf.conference}}" width="16" height="16" /></a> |
22 | | - ​ |
23 | | - </span> |
24 | | - {% endif %} |
25 | | - {% if conf.sponsor %} |
26 | | - <span class="conf-title-icon"> |
27 | | - <a title="Sponsorship Opportunity for {{conf.conference}}" href="{{conf.sponsor}}" target="_blank"><img src="/static/img/060-coin-dollar.svg" class="badge-link" alt="Link to Sponsorship page of {{conf.conference}}" width="16" height="16" /></a> |
28 | | - ​ |
29 | | - </span> |
30 | | - {% endif %} |
31 | | - {% if conf.mastodon %} |
32 | | - <span class="conf-title-icon"> |
33 | | - <a title="Mastodon for {{conf.conference}}" href="{{conf.mastodon}}" target="_blank"><img src="/static/img/407-mastodon.svg" class="badge-link" alt="Link to Conference Mastodon" width="16" height="16" /></a> |
34 | | - ​ |
35 | | - </span> |
36 | | - {% elsif conf.twitter %} |
37 | | - <span class="conf-title-icon"> |
38 | | - <a title="Twitter for {{conf.conference}}" href="https://twitter.com/{{conf.twitter}}" target="_blank"><img src="/static/img/407-twitter.svg" class="badge-link" alt="Link to Conference Twitter" width="16" height="16" /></a> |
39 | | - ​ |
40 | | - </span> |
41 | | - {% endif %} |
| 3 | + <div class="conf-title-row"> |
| 4 | + <span class="conf-title"> |
| 5 | + <a title="Deadline Details" href="{{site.baseurl}}/conference/{{conf.conference | slugify: "latin"}}-{{conf.year}}/">{{conf.conference}} {{conf.year}}</a> |
| 6 | + </span> |
| 7 | + <span class="conf-title-small"> |
| 8 | + <a title="Deadline Details" href="{{site.baseurl}}/conference/{{conf.conference | slugify: "latin"}}-{{conf.year}}/">{{conf.conference}} '{{conf.year | slice: -2, 3}}</a> |
| 9 | + </span> |
| 10 | + <span class="conf-external-links"> |
| 11 | + <a title="Conference Website" href="{{conf.link}}" target="_blank"><img src="/static/img/203-earth.svg" alt="Website" width="14" height="14" /></a> |
| 12 | + {% if conf.cfp_link %} |
| 13 | + <a title="Call for Participation" href="{{conf.cfp_link}}" target="_blank"><img src="/static/img/035-file-text.svg" alt="CFP" width="14" height="14" /></a> |
| 14 | + {% endif %} |
| 15 | + {% if conf.finaid %} |
| 16 | + <a title="Financial Aid" href="{{conf.finaid}}" target="_blank"><img src="/static/img/066-lifebuoy.svg" alt="Aid" width="14" height="14" /></a> |
| 17 | + {% endif %} |
| 18 | + {% if conf.sponsor %} |
| 19 | + <a title="Sponsorship" href="{{conf.sponsor}}" target="_blank"><img src="/static/img/060-coin-dollar.svg" alt="Sponsor" width="14" height="14" /></a> |
| 20 | + {% endif %} |
| 21 | + {% if conf.mastodon %} |
| 22 | + <a title="Mastodon" href="{{conf.mastodon}}" target="_blank"><img src="/static/img/407-mastodon.svg" alt="Mastodon" width="14" height="14" /></a> |
| 23 | + {% elsif conf.twitter %} |
| 24 | + <a title="Twitter" href="https://twitter.com/{{conf.twitter}}" target="_blank"><img src="/static/img/407-twitter.svg" alt="Twitter" width="14" height="14" /></a> |
| 25 | + {% endif %} |
| 26 | + </span> |
| 27 | + </div> |
42 | 28 | </div> |
43 | 29 | <div class="col-6"> |
44 | 30 | <span class="timer"></span> |
45 | 31 | <span class="timer-small"></span> |
46 | 32 | </div> |
47 | 33 | </div> |
| 34 | +<!-- Include Minimal Action Bar (server-side rendered) --> |
| 35 | +{% assign conf_id = conf.conference | append: "-" | append: conf.year | slugify: "latin" %} |
| 36 | +{% assign cfp_date = conf.cfp_ext | default: conf.cfp %} |
| 37 | +{% include action_bar.html conf_id=conf_id conf_name=conf.conference conf_title=conf.conference conf_cfp=cfp_date conf_place=conf.place %} |
0 commit comments