forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed how publications were presented so that in prep work looks ok
- Loading branch information
1 parent
e05ac2a
commit 987d827
Showing
1 changed file
with
33 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,66 @@ | ||
{% include base_path %} | ||
|
||
{% if post.header.teaser %} | ||
{% capture teaser %}{{ post.header.teaser }}{% endcapture %} | ||
{% capture teaser %}{{ post.header.teaser }}{% endcapture %} | ||
{% else %} | ||
{% assign teaser = site.teaser %} | ||
{% assign teaser = site.teaser %} | ||
{% endif %} | ||
|
||
{% if post.id %} | ||
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %} | ||
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %} | ||
{% else %} | ||
{% assign title = post.title %} | ||
{% assign title = post.title %} | ||
{% endif %} | ||
|
||
<div class="{{ include.type | default: "list" }}__item"> | ||
<div class="{{ include.type | default: " list" }}__item"> | ||
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork"> | ||
{% if include.type == "grid" and teaser %} | ||
<div class="archive__item-teaser"> | ||
<img src= | ||
{% if teaser contains "://" %} | ||
"{{ teaser }}" | ||
{% else %} | ||
"{{ teaser | prepend: "/images/" | prepend: base_path }}" | ||
{% endif %} | ||
alt=""> | ||
</div> | ||
<div class="archive__item-teaser"> | ||
<img src={% if teaser contains "://" %} "{{ teaser }}" {% else %} "{{ teaser | prepend: " /images/" | prepend: | ||
base_path }}" {% endif %} alt=""> | ||
</div> | ||
{% endif %} | ||
|
||
<h2 class="archive__item-title" itemprop="headline"> | ||
{% if post.link %} | ||
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ base_path }}{{ post.url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a> | ||
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ base_path }}{{ post.url }}" rel="permalink"><i | ||
class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a> | ||
{% else %} | ||
<a href="{{ base_path }}{{ post.url }}" rel="permalink">{{ title }}</a> | ||
<a href="{{ base_path }}{{ post.url }}" rel="permalink">{{ title }}</a> | ||
{% endif %} | ||
</h2> | ||
|
||
{% if post.read_time %} | ||
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p> | ||
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p> | ||
{% endif %} | ||
|
||
{% if post.collection == 'teaching' %} | ||
<p> {{ post.type }}, <i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p> | ||
{% elsif post.collection == 'publications' %} | ||
<p>Published in <i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p> | ||
{% elsif post.date %} | ||
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Published:" }}</strong> <time datetime="{{ post.date | default: "1900-01-01" | date_to_xmlschema }}">{{ post.date | default: "1900-01-01" | date: "%B %d, %Y" }}</time></p> | ||
{% endif %} | ||
{% if post.collection == 'teaching' %} | ||
<p> {{ post.type }}, <i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p> | ||
{% elsif post.collection == 'publications' %} | ||
<p><i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p> | ||
{% elsif post.date %} | ||
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ | ||
site.data.ui-text[site.locale].date_label | default: "Published:" }}</strong> <time | ||
datetime="{{ post.date | default: " 1900-01-01" | date_to_xmlschema }}">{{ post.date | default: "1900-01-01" | | ||
date: "%B %d, %Y" }}</time></p> | ||
{% endif %} | ||
|
||
{% if post.excerpt and site.read_more != 'enabled' %} | ||
<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify }}</p> | ||
{% elsif post.excerpt and site.read_more == 'enabled' %} | ||
<p class="archive__item-excerpt" itemprop="description"><p>{{ post.excerpt | markdownify | remove: '<p>' | remove: '</p>' }}<strong><a href="{{ base_path }}{{ post.url }}" rel="permalink"> Read more</a></strong></p></p> | ||
<p class="archive__item-excerpt" itemprop="description"> | ||
<p>{{ post.excerpt | markdownify | remove: ' | ||
<p>' | remove: '</p>' }}<strong><a href="{{ base_path }}{{ post.url }}" rel="permalink"> Read more</a></strong></p> | ||
</p> | ||
{% endif %} | ||
|
||
{% if post.citation and post.paperurl %} | ||
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}"><u>{{ post.paperurl }}</u></a></p> | ||
<p>Recommended citation: {{ post.citation }} <a href="{{ post.paperurl }}"><u>{{ post.paperurl }}</u></a></p> | ||
{% elsif post.citation %} | ||
<p>Recommended citation: {{ post.citation }} </p> | ||
<p>Recommended citation: {{ post.citation }} </p> | ||
{% elsif post.paperurl %} | ||
<p>Download <a href=" {{ post.paperurl }} "><u>here</u></a></p> | ||
<p>Download <a href=" {{ post.paperurl }} "><u>here</u></a></p> | ||
{% endif %} | ||
|
||
</article> | ||
</div> | ||
</div> |