Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion themes/default/templates/page_research.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ <h1>{{ .page.Title }}</h1>
<a href="{{.ScholarURL}}">{{.Title}}</a> <br/>
{{.Authors}} <br/>
</div>
<div class="col">{{.Year}}</div>
<div class="col-2">{{.Year}}</div>
<div class="col-2">{{ if .NumCitations }}{{ .NumCitations }} cited{{ end }}</div>
Comment on lines +25 to +26
</div>
{{end}}
</div>
Expand Down
3 changes: 2 additions & 1 deletion themes/default/templates/research.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ <h1>Research and Publications</h1>
<a href="{{.ScholarURL}}">{{.Title}}</a> <br/>
{{.Authors}} <br/>
</div>
<div class="col">{{.Year}}</div>
<div class="col-2">{{.Year}}</div>
<div class="col-2">{{ if .NumCitations }}{{ .NumCitations }} cited{{ end }}</div>
Comment on lines +20 to +21
</div>
{{end}}
</div>
Expand Down
3 changes: 2 additions & 1 deletion themes/forest/templates/page_research.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ <h1 style="color: #1c2e1c;">{{ .page.Title }}</h1>
<a href="{{.ScholarURL}}" style="color: #2d5a27;">{{.Title}}</a> <br/>
<span style="color: #7a937a;">{{.Authors}}</span> <br/>
</div>
<div class="col" style="color: #7a937a;">{{.Year}}</div>
<div class="col-2" style="color: #7a937a;">{{.Year}}</div>
<div class="col-2" style="color: #7a937a;">{{ if .NumCitations }}{{ .NumCitations }} cited{{ end }}</div>
</div>
{{end}}
</div></div>
Expand Down
3 changes: 2 additions & 1 deletion themes/minimal/templates/page_research.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ <h1>{{ .page.Title }}</h1>
<a href="{{.ScholarURL}}">{{.Title}}</a> <br/>
{{.Authors}} <br/>
</div>
<div class="col">{{.Year}}</div>
<div class="col-2">{{.Year}}</div>
<div class="col-2">{{ if .NumCitations }}{{ .NumCitations }} cited{{ end }}</div>
Comment on lines +19 to +20
</div>
{{end}}
</div>
Expand Down
Loading