Skip to content

Commit 5c56699

Browse files
committed
Fix typo, modifications to style
1 parent 1b2f049 commit 5c56699

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

_includes/archive-single.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ <h2 class="archive__item-title" itemprop="headline">
5353
{% endif %}
5454

5555
{% if post.citation and post.paperurl and post.slidesurl %}
56-
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}">{{ post.paperurl }}</a> <a href="{{ post.slidesurl }}">Slides</a></p>
56+
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.paperurl }}">Download Paper</a> | <a href="{{ post.slidesurl }}">Download Slides</a></p>
5757
{% elsif post.citation and post.paperurl %}
58-
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}">{{ post.paperurl }}</a></p>
58+
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.paperurl }}">Download Paper</a></p>
5959
{% elsif post.citation and post.slidesurl %}
60-
<p>Recommended citation: {{ post.citation }} <a href="{{ post.slidesurl }}">Slides</a></p>
60+
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.slidesurl }}">Download Slides</a></p>
6161
{% elsif post.citation %}
6262
<p>Recommended citation: {{ post.citation }}</p>
6363
{% elsif post.paperurl %}
64-
<p class="wordwrap">Download <a href=" {{ post.paperurl }} ">here</a></p>
65-
{% elseif post.slidesurl %}
66-
<p>Download <a href="{{ post.slidesurl }}">Slides</a></p></p>
64+
<p><a href=" {{ post.paperurl }} ">Download Paper</a></p>
65+
{% elsif post.slidesurl %}
66+
<p>Download <a href="{{ post.slidesurl }}">Download Slides</a></p></p>
6767
{% endif %}
6868

6969
</article>

_layouts/single.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@
4848
{{ content }}
4949

5050
{% if page.citation and page.paperurl and page.slidesurl %}
51-
<p style="font-size: smaller">Recommended citation: {{ page.citation }} <a href="{{ page.paperurl }}"><u>{{ page.paperurl }}</u></a> <a href="{{ page.slidesurl }}">Slides</a></p>
51+
<p style="font-size: smaller">Recommended citation: {{ page.citation }}<br /><a href="{{ page.paperurl }}">Download Paper</a> | <a href="{{ page.slidesurl }}">Download Slides</a></p>
5252
{% elsif page.citation and page.paperurl %}
53-
<p style="font-size: smaller">Recommended citation: {{ page.citation }} <a href="{{ page.paperurl }}"><u>{{ page.paperurl }}</u></a></p>
53+
<p style="font-size: smaller">Recommended citation: {{ page.citation }}<br /><a href="{{ page.paperurl }}">Download Paper</a></p>
5454
{% elsif page.citation and page.slidesurl %}
55-
<p style="font-size: smaller">Recommended citation: {{ page.citation }} <a href="{{ page.slidesurl }}">Slides</a></p>
55+
<p style="font-size: smaller">Recommended citation: {{ page.citation }}<br /><a href="{{ page.slidesurl }}">Download Slides</a></p>
5656
{% elsif page.citation %}
5757
<p style="font-size: smaller">Recommended citation: {{ page.citation }}</p>
5858
{% elsif page.slidesurl %}
59-
<p style="font-size: smaller"><a href="{{ page.slidesurl }}">Slides</a></p>
59+
<p style="font-size: smaller"><a href="{{ page.slidesurl }}">Download Slides</a></p>
6060
{% endif %}
6161

6262
{% if page.link %}<div><a href="{{ page.link }}" class="btn">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}

0 commit comments

Comments
 (0)