lots of fixes and customisations
This commit is contained in:
parent
a866f96482
commit
e969976249
31 changed files with 751 additions and 832 deletions
|
@ -1,122 +1,144 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
{{ partial "meta.html" . }}
|
||||
{{ partial "meta.html" . }}
|
||||
|
||||
<base href="{{ .Site.BaseURL }}">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
||||
<base href="{{ .Site.BaseURL }}">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
||||
|
||||
{{ partial "head_includes.html" . }}
|
||||
</head>
|
||||
<body>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
{{ partial "sidebar.html" . }}
|
||||
</header>
|
||||
{{ partial "head_includes.html" . }}
|
||||
</head>
|
||||
<body>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
{{ partial "sidebar.html" . }}
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="units-row">
|
||||
<div class="unit-66">
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock">
|
||||
|
||||
</div>
|
||||
<div class="unit-66">
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
{{ range first 2 ((where .Data.Pages.ByDate "Section" "blog").Reverse) }}
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock">
|
||||
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
||||
<h4>{{ .Date.Format "2 January 2006" }}</h4>
|
||||
</div>
|
||||
<div class="unit-66">
|
||||
{{ if .Truncated }}
|
||||
{{ .Summary }}
|
||||
<p class="text-right"><a href="{{ .RelPermalink }}">Read More…</a></p>
|
||||
{{ else }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock"> </div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="units-row">
|
||||
<div class="unit-66">
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock">
|
||||
|
||||
</div>
|
||||
<div class="unit-66">
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
{{ range first 2 ((where .Data.Pages.ByDate "Section" "blog").Reverse) }}
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock">
|
||||
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
||||
<h4>{{ .Date.Format "2 January 2006" }}</h4>
|
||||
</div>
|
||||
<div class="unit-66">
|
||||
{{ if .Truncated }}
|
||||
{{ .Summary }}
|
||||
<p class="text-right"><a href="{{ .RelPermalink }}">Read More…</a></p>
|
||||
{{ else }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="unit-33">
|
||||
|
||||
{{ end }}
|
||||
<h3>Recent Papers</h3>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 5 (where .Data.Pages.ByDate "Section" "publications").Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="/publications">→ More Papers</a></nav>
|
||||
</footer>
|
||||
|
||||
<div class="units-row-end">
|
||||
<div class="unit-33 dateblock"> </div>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Recent & Upcoming Presentations</h3>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range (where .Data.Pages.ByDate "Section" "presentation").Reverse }}
|
||||
{{ if (ge .Date.Unix .Now.Unix) }}
|
||||
{{ if (le .Date.Unix (add .Now.Unix 10368000)) }}
|
||||
<li><i class="fa-li fa fa-comment-o fa-fw" style="color:#b00;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><em>{{ .Title | safeHTML }}</em></a>, {{ .Params.host | safeHTML }} ({{ .Date.Format "2 January 2006" }}). {{ partial "comingsoon.html" . }}
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if (ge .Now.Unix .Date.Unix ) }}
|
||||
{{ if (le .Now.Unix (add .Date.Unix 12368000)) }}
|
||||
<li><i class="fa-li fa fa-comment-o fa-fw" style="color:#e88;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><em>{{ .Title | safeHTML }}</em></a>, {{ .Params.host | safeHTML }} ({{ .Date.Format "2 January 2006" }}).
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
<div class="unit-33">
|
||||
|
||||
<h3>Recent Papers</h3>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 5 (where .Data.Pages.ByDate "Section" "publications").Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="/publications">→ More Papers</a></nav>
|
||||
</footer>
|
||||
|
||||
<h3>Current Teaching</h3>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ if (ge .Date.Unix now.Unix) }}
|
||||
{{ if (le .Date.Unix (add now.Unix 7776000)) }}
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. {{ partial "comingsoon.html" . }}
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ if (le .Date.Unix now.Unix) }}
|
||||
{{ if (le now.Unix (add .Date.Unix .Params.duration)) }}
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. {{ partial "nowon.html" . }}
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ $classend := (add .Date.Unix .Params.duration) }}
|
||||
{{ if (ge now.Unix $classend ) }}
|
||||
{{ if (le now.Unix (add $classend 10368000)) }}
|
||||
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. <span class="badge badge-small">completed</span>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="/presentations">→ More Presentations</a></nav>
|
||||
</footer>
|
||||
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><br /><a href="teaching">→ Other Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Current Teaching</h3>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ if (ge .Date.Unix now.Unix) }}
|
||||
{{ if (le .Date.Unix (add now.Unix 7776000)) }}
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. {{ partial "comingsoon.html" . }}
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
</div><!-- /end .wrapper -->
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ if (le .Date.Unix now.Unix) }}
|
||||
{{ if (le now.Unix (add .Date.Unix .Params.duration)) }}
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. {{ partial "nowon.html" . }}
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ range (where .Data.Pages.ByDate "Section" "teaching").Reverse }}
|
||||
{{ $classend := (add .Date.Unix .Params.duration) }}
|
||||
{{ if (ge now.Unix $classend ) }}
|
||||
{{ if (le now.Unix (add $classend 10368000)) }}
|
||||
|
||||
<hr class="separator">
|
||||
<li><i class="fa-li fa fa-mortar-board fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i><a href="{{ .Permalink }}"><span class="caps">{{ .Title }}</span></a>, {{ .Date.Format "January" }}–{{ .Params.enddate | dateFormat "January 2006" }}. <span class="badge badge-small">completed</span>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
{{ partial "whatisthis.html" . }}
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><br /><a href="/teaching">→ Other Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ partial "foot.html" . }}
|
||||
</body>
|
||||
</div><!-- /end .wrapper -->
|
||||
|
||||
<hr class="separator">
|
||||
|
||||
{{ partial "whatisthis.html" . }}
|
||||
|
||||
{{ partial "foot.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<footer id="footer">
|
||||
<section class="wrapper small">Powered by <a href="http://gohugo.io">Hugo</a> and <a href="http://imperavi.com/kube/">Kube</a>. © Jeremy Kidwell 2017–{{ now.Format "2006" }}.
|
||||
<section class="wrapper small">Powered by <a href="http://gohugo.io">Hugo</a> and <a href="http://imperavi.com/kube/">Kube</a>. © Jeremy Kidwell 2003–{{ now.Format "2006" }}.
|
||||
</section>
|
||||
</footer>
|
|
@ -3,7 +3,7 @@
|
|||
<div class="unit-40"><!--about-->
|
||||
<h3>about</h3>
|
||||
<figure class="image-left">
|
||||
<img class="avatar" src="files/misc/jkpic.jpg" height="120" width="120">
|
||||
<img class="avatar" src="files/misc/ben_nevis.jpg" height="120">
|
||||
</figure>
|
||||
<p>I am Lecturer in <a href="http://www.birmingham.ac.uk/schools/ptr/index.aspx">Theological Ethics</a> at <a href="http://www.birmingham.ac.uk">the University of Birmingham</a>.</p>
|
||||
</div><!--end about-->
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
|
||||
|
||||
{{ template "partials/sidebar.html" . }}
|
||||
|
||||
{{ $baseurl := .Site.BaseURL }}
|
||||
|
@ -13,100 +13,105 @@
|
|||
<div class="wrapper">
|
||||
<div class="units-row">
|
||||
<div lass="unit-100">
|
||||
<p><a href="/vita.pdf"><em>Curriculum Vitae</em></a><a href="/vita.pdf" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a></p>
|
||||
<p>Much of my research has been about exchange in human blood and organs, cultural goods, software, and ideas. My current work focuses on the moral order of market society, the effect of models and measurement on social classification, and the link between those two topics, especially in the consumer credit market. I'm also interested in techniques and methods for data visualization.</p>
|
||||
<!--
|
||||
Need to fix lines to include Kidwell vita eventually
|
||||
<p><a href="/vita.pdf"><em>Curriculum Vitae</em></a><a href="/vita.pdf" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a></p>
|
||||
-->
|
||||
<p>I completed my PhD in theological ethics in 2013 and this research focussed particularly on the way that ancient narratives about craft-work might illuminate present quandaries in business, engineering, and design surrounding excellence, creativity, property, and more. Since then, my research has taken on a decidedly more contemporary context and more explicitly environmental concerns, exploring through ethnographic research what forms of political mobilisation are being generated by Scottish churches and (by comparison) other environmental community groups in response to climate change. Publications and PDFs are below for your perusal. You can also find and follow my recent publications at <a href="https://www.researchgate.net/profile/Jeremy_Kidwell" target="_blank" rel="noopener noreferrer">Researchgate</a>, <a href="http://www.amazon.com/Jeremy-Kidwell/e/B015J2YIRY" target="_blank" rel="noopener noreferrer">Amazon.com</a>, <a href="http://orcid.org/0000-0001-5954-4246" target="_blank" rel="noopener noreferrer">ORCID</a>, or <a href="http://www.researcherid.com/ProfileView.action?SID=Y2be7r6XCYCehFmmdbD&returnCode=ROUTER.Success&queryString=KG0UuZjN5WlbNDYeE9y49ATJE2s0IZA50huUpkBB99I%253D&SrcApp=CR&Init=Yes" target="_blank" rel="noopener noreferrer">ResearcherID</a>, and if you must <a href="https://bham.academia.edu/JeremyKidwell" target="_blank" rel="noopener noreferrer">Academia.edu</a>.</em></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper">
|
||||
<div class="units-row">
|
||||
<!--start column 1-->
|
||||
<div class="unit-50">
|
||||
<h2>Working Papers</h2>
|
||||
{{ range (where .Data.Pages "Type" "unpublished").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa fa-file-o fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ range (where .Data.Pages "Type" "unpublished").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
{{ end }}
|
||||
<h2>Articles and Book Chapters</h2>
|
||||
{{ range (where .Data.Pages "Type" "published").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa fa-file-o fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
<h2>Articles and Book Chapters</h2>
|
||||
{{ range (where .Data.Pages "Type" "published").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>Retired Papers</h2>
|
||||
<!-- Column of even-numbered items -->
|
||||
{{ range (where .Data.Pages "Type" "retired").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "retired" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!--start column 2-->
|
||||
<div class="unit-50">
|
||||
<h2>Books</h2>
|
||||
<!-- Column of even-numbered items -->
|
||||
{{ range (where .Data.Pages "Type" "monograph").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "monograph" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
<h2>Essays and Reviews</h2>
|
||||
{{ range (where .Data.Pages "Type" "other").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
<h2>Essays and Reviews</h2>
|
||||
{{ range (where .Data.Pages "Type" "other").GroupByDate "2006" "desc" }}
|
||||
<div class="units-row">
|
||||
<div class="unit-10">
|
||||
<h3>{{ .Key }}</h3>
|
||||
</div>
|
||||
<div class="unit-90">
|
||||
<ul class="compact fa-ul">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<li><i class="fa-li fa {{ if eq .Type "unpublished" }}fa-file-o {{ else if eq .Params.kind "book" }}fa-book {{ else }}fa-file {{ end }} fa-fw" style="color:#03396c;font-size:80%;padding-top:6px;"></i> {{ .Params.citation | safeHTML }}
|
||||
<a href="{{ .Permalink }}" class="badge badge-small">Abstract</a>
|
||||
{{ if isset .Params "file" }}
|
||||
<a href="{{.Site.BaseURL}}files/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
{{ end }}
|
||||
</div>
|
||||
<div class="unit-30">
|
||||
<p><em>Some of the classes I have offered in recent years, including pointers to upcoming courses and other resources, when they are available. Classes are listed once but are typically taught more frequently than that.</em></p>
|
||||
<p><em>This list include courses that I've taught recently along with my teaching for the upcoming year. You'll find syllabi and resources if they're avialbale.</em></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue