Skip to content

Commit 69b3ab5

Browse files
committed
feat: add full conf name to details page
1 parent b9942c7 commit 69b3ab5

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

_pages/conference.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ <h1>
1616
<span id="conf-title-href"></span>
1717
<span id="twitter-box"></span>
1818
</h1>
19+
<h3 id="conf-full-name">
20+
</h3>
1921
</div>
2022
</div>
2123
<div class="row">
@@ -129,6 +131,9 @@ <h1>
129131
{% endif %}
130132
var twitter_slug = '<a href="https://twitter.com/share" class="twitter-share-button" data-text="Countdown to the #{{ conf.title }}{{ conf.year }} deadline!" data-show-count="false" style="font-size:13px;">Tweet</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8">';
131133
$('#twitter-box').html(twitter_slug);
134+
{% if conf.full_name %}
135+
$('#conf-full-name').text("{{conf.full_name}}");
136+
{% endif %}
132137
{% if conf.deadline == "TBA" %}
133138
$('#conf-timer').html("TBA");
134139
$('.deadline-time').html("TBA");

static/css/deadlines.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ h3 {
5353
border-bottom: none;
5454
}
5555

56+
#conf-full-name {
57+
margin-bottom: 5px;
58+
}
59+
5660
p.authors {
5761
margin-bottom: 5px;
5862
color: #808080;

0 commit comments

Comments
 (0)