-
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.
updated theme to include software page
- Loading branch information
Showing
2 changed files
with
96 additions
and
1 deletion.
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
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,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"> </div> | ||
|
||
</div> | ||
|
||
{{ partial "footer.html" . }} | ||
</body> | ||
|
||
</html> | ||
|