Skip to content

Commit

Permalink
Minor pub style tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
wbthomason committed Jan 29, 2024
1 parent 26ce0a2 commit 1b9d72b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sass/styles/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

.pubs {
display: grid;
grid-template-columns: 1fr 10fr;
grid-template-columns: 1fr 15fr;
gap: 1em;
justify-items: left;
}
Expand Down
4 changes: 1 addition & 3 deletions templates/publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1>Conference Publications</h1>
<dd>
<div class="pubinfo">
{{ self::authorlist(authors=paper.tags.author) }}
{% if paper.tags.conference and paper.entry_type is matching("inproceedings") %}
{% if paper.tags.conference and paper.entry_type is matching("article") %}
<br/>
<span>Presented at {{ paper.tags.conference }}.</span>
<span>Published in {{ paper.tags.journaltitle | replace(from="{{", to="") | replace(from="}}", to="") }}.</span>
Expand All @@ -78,7 +78,6 @@ <h1>Conference Publications</h1>
<span class="pub-acceptance">Acceptance rate: {{ paper.tags.acceptance }}%</span>
{% endif %}
{% if paper.tags.note %}
<br/>
{{ paper.tags.note }}
{% endif %}
</div>
Expand Down Expand Up @@ -123,7 +122,6 @@ <h1>Journal Publications</h1>
<span class="pub-review">(under review)</span>
{% endif %}
{% if paper.tags.note %}
<br/>
{{ paper.tags.note }}
{% endif %}
<br />
Expand Down

0 comments on commit 1b9d72b

Please sign in to comment.