Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fboehm committed Oct 8, 2021
2 parents 686d087 + d858ee2 commit c3e719c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions layouts/partials/work.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

{{ else if eq .type "software" }}
<i class="fa-li fas fa-box fa-fw"></i>
<strong>{{ .name }}:</strong> {{ .description}}. ({{ dateFormat "2006" .date }})
<strong>{{ .name }}:
</strong> {{ .description}}. ({{ dateFormat "2006" .date }})
{{if isset . "github" }}&nbsp;<a href="{{ .github }}" class="is-smaller"><i class="fab fa-github fa-fw"></i></a>{{ end }}
{{if isset . "cran" }}&nbsp;<a href="{{ .cran }}" class="is-smaller"><i class="fab fa-r-project fa-fw"></i></a>{{ end }}
{{if isset . "exurl" }}&nbsp;<a href="{{ .exurl }}" class="is-smaller"><i class="fas fa-link fa-fw"></i></a>{{ end }}
Expand All @@ -45,6 +46,8 @@

{{if isset . "long_description" }}
&nbsp;<a data-kube="toggle" data-target="#desc-{{ .name }}" class="is-hidden-print"><i class="fas fa-angle-down fa-fw"></i></a>
<div id="desc-{{ .name }}" class="is-hidden"><em>{{ .long_description | markdownify }}</em></div>
<div id="desc-{{ .name }}" class="is-hidden"><em>{{ .long_description | markdownify }}</em></div>

<!-- <div id="desc-{{ .name }}" class="is-hidden"><em>{{ .long_description}}</em></div> -->
{{ end }}
</li>
4 changes: 2 additions & 2 deletions layouts/section/software.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<div class="wrapper">
<div class="is-row">
<h1 class="is-center">Software</h1>
</div>
</div>
</div>

<div class="is-row">
<h2>R packages</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.software}}
Expand Down
2 changes: 1 addition & 1 deletion layouts/section/vitae.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h2>Honors and Awards</h2>



<h2>Presentations</h2>
<h2>Selected Presentations</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.presentations "date" "desc" }}
{{ partial "work.html" .}}
Expand Down

0 comments on commit c3e719c

Please sign in to comment.