-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
133 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<div class="mv3"> | ||
{% for pub in include.publications %} | ||
<div class="mt4 mt3-ns flex flex-row-ns flex-column"> | ||
{% assign thumb = 'assets' | append: pub.url | replace: '.html', | ||
'_thumb.png' %} | ||
<div | ||
class="h3 mr3-ns mb2 mb0-ns flex-shrink-0 preview-image ba b--black-05 db" | ||
style="background-image: url('{{ thumb | relative_url }}')" | ||
></div> | ||
<div class="measure-wide"> | ||
<div class="mb1"> | ||
<a href="{{ pub.url }}" class="b link black hover-cmu-red" | ||
>{{ pub.title }}</a | ||
> | ||
<span class="fw2"> | ||
{% for author in pub.authors %}{% include person name=author %}{% | ||
unless forloop.last %}, {% endunless %}{% endfor %}</span | ||
>, <span>{{ pub.venue }} {{ pub.year }}</span> | ||
{% if pub.awards %} | ||
<span class="cmu-red mv1 b nowrap"> | ||
{% for award in pub.awards %}{{ award }}{% unless forloop.last %}, {% endunless %} | ||
{% endfor %} | ||
</span> | ||
{% endif %} | ||
</div> | ||
<a href="{{ pub.url }}" class="cta">Show details</a> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> |
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
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
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
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
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