Skip to content

Commit

Permalink
updated theme to include software page
Browse files Browse the repository at this point in the history
  • Loading branch information
fboehm committed Jul 13, 2021
1 parent 3aefcb9 commit cab104a
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<li><a href="/blog">Blog</a></li>
<!-- <li><a href="/projects">Projects</a></li> -->
<li><a href="/vitae">Vitae</a></li>
<li><a href="/software/qtl2pleio">Software</a></li>
<li><a href="/software">Software</a></li>
<li><a href="#connect">Connect</a></li>
</ul>
</nav>
Expand Down
95 changes: 95 additions & 0 deletions layouts/section/software.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html>
{{ partial "head.html" . }}

<body>
{{ partial "navbar.html" . }}
<div class="wrapper">
<div class="is-row">
<h1 class="is-center">Software</h1>
</div>

<div class="is-row">

<div class="is-col is-10 is-hidden-print">
</div>

<div class="is-col is-40">

<h2>R packages</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.software}}
<li><i class="fa-li fas fa-graduation-cap fa-fw"></i>
{{ .name }} <span style="float:right;">{{ dateFormat "2006" .date }}</span>
</li>
{{ end }}
</ul>

<h2>Professional Experience</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.employment "start_date" "desc" }}
<li class="is-inset-bottom-4">
<i class="fa-li fas fa-briefcase fa-fw"></i>
{{ .title }} <span style="float:right;">{{ dateFormat "2006" .start_date }}-{{ if .end_date }}{{ dateFormat "2006" .end_date }}{{ end }}</span><br/>
{{ .organization }} <span style="float:right;">{{ .location }}</span>
</li>
{{ end }}
</ul>

<h2>Selected Software Packages</h2>
<ul class="fa-ul">
{{ range .Site.Data.software }}
{{ partial "work.html" .}}
{{ end }}
</ul>

<h2>Courses and Workshops</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.courses "date" "desc" }}
{{ partial "work.html" .}}
{{ end }}
</ul>

<h2>Honors and Awards</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.honors "date" "desc" }}
{{ partial "work.html" .}}
{{ end }}
</ul>



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

<div class="is-col is-40">
<h2>Publications</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.papers "date" "desc" }}
{{ partial "work.html" .}}
{{ end }}
</ul>

<h2>Service</h2>
<ul class="fa-ul">
{{ range sort .Site.Data.service "start_date" "desc" }}
{{ partial "work.html" .}}
{{ end }}
</ul>

</div>

<div class="is-col is-10 is-hidden-print">&nbsp;</div>

</div>

{{ partial "footer.html" . }}
</body>

</html>

0 comments on commit cab104a

Please sign in to comment.