Skip to content

Commit

Permalink
Fix typo, modifications to style
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzupkoii committed May 17, 2024
1 parent 1b2f049 commit 5c56699
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions _includes/archive-single.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ <h2 class="archive__item-title" itemprop="headline">
{% endif %}

{% if post.citation and post.paperurl and post.slidesurl %}
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}">{{ post.paperurl }}</a> <a href="{{ post.slidesurl }}">Slides</a></p>
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.paperurl }}">Download Paper</a> | <a href="{{ post.slidesurl }}">Download Slides</a></p>
{% elsif post.citation and post.paperurl %}
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}">{{ post.paperurl }}</a></p>
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.paperurl }}">Download Paper</a></p>
{% elsif post.citation and post.slidesurl %}
<p>Recommended citation: {{ post.citation }} <a href="{{ post.slidesurl }}">Slides</a></p>
<p>Recommended citation: {{ post.citation }}<br /><a href="{{ post.slidesurl }}">Download Slides</a></p>
{% elsif post.citation %}
<p>Recommended citation: {{ post.citation }}</p>
{% elsif post.paperurl %}
<p class="wordwrap">Download <a href=" {{ post.paperurl }} ">here</a></p>
{% elseif post.slidesurl %}
<p>Download <a href="{{ post.slidesurl }}">Slides</a></p></p>
<p><a href=" {{ post.paperurl }} ">Download Paper</a></p>
{% elsif post.slidesurl %}
<p>Download <a href="{{ post.slidesurl }}">Download Slides</a></p></p>
{% endif %}

</article>
Expand Down
8 changes: 4 additions & 4 deletions _layouts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@
{{ content }}

{% if page.citation and page.paperurl and page.slidesurl %}
<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>
<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>
{% elsif page.citation and page.paperurl %}
<p style="font-size: smaller">Recommended citation: {{ page.citation }} <a href="{{ page.paperurl }}"><u>{{ page.paperurl }}</u></a></p>
<p style="font-size: smaller">Recommended citation: {{ page.citation }}<br /><a href="{{ page.paperurl }}">Download Paper</a></p>
{% elsif page.citation and page.slidesurl %}
<p style="font-size: smaller">Recommended citation: {{ page.citation }} <a href="{{ page.slidesurl }}">Slides</a></p>
<p style="font-size: smaller">Recommended citation: {{ page.citation }}<br /><a href="{{ page.slidesurl }}">Download Slides</a></p>
{% elsif page.citation %}
<p style="font-size: smaller">Recommended citation: {{ page.citation }}</p>
{% elsif page.slidesurl %}
<p style="font-size: smaller"><a href="{{ page.slidesurl }}">Slides</a></p>
<p style="font-size: smaller"><a href="{{ page.slidesurl }}">Download Slides</a></p>
{% endif %}

{% 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 %}
Expand Down

0 comments on commit 5c56699

Please sign in to comment.