lots of fixes and customisations
This commit is contained in:
parent
e969976249
commit
e64976704c
238
layouts/404.html
238
layouts/404.html
|
@ -1,142 +1,134 @@
|
|||
{{ partial "head.html" . }}
|
||||
{{ $baseurl := .Site.BaseURL }}
|
||||
<body>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
<nav class="navbar">
|
||||
<ul>
|
||||
<li class="hd"><span><a href="{{ $baseurl }}"><b>consequently.org</b></a></span></li>
|
||||
<li><a href="{{ $baseurl }}/news">News</a></li>
|
||||
<li><a href="{{ $baseurl }}/writing">Writing</a></li>
|
||||
<li><a href="{{ $baseurl }}/presentation">Presentations</a></li>
|
||||
<li><a href="{{ $baseurl }}/class">Classes</a></li>
|
||||
<li><a href="#searchsite">Search</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
|
||||
<div class="wrapper">
|
||||
{{ template "partials/sidebar.html" . }}
|
||||
|
||||
<div class="units-row">
|
||||
{{ $baseurl := .Site.BaseURL }}
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>404: Page Not Found</h2>
|
||||
<p class="big">
|
||||
There is no page here at the address you requested. Perhaps try a search to find what you are looking for?
|
||||
</p>
|
||||
<form method="get" action="http://duckduckgo.com/">
|
||||
<input type="search" name="q" maxlength="255" placeholder="Search consequently.org">
|
||||
<input type="hidden" name="sites" value="consequently.org"/>
|
||||
<input type="hidden" name="ka" value="Alegreya"/>
|
||||
<input type="hidden" name="k7" value="#faf8f8"/>
|
||||
<input type="hidden" name="kj" value="#b33"/>
|
||||
<input type="hidden" name="ky" value="#fafafa"/>
|
||||
<input type="hidden" name="kx" value="b"/>
|
||||
<input type="hidden" name="ko" value="-1"/>
|
||||
<input type="hidden" name="k1" value="-1"/>
|
||||
<input type="hidden" name="kt" value="Alegreya Sans"/>
|
||||
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" /></form>
|
||||
</div>
|
||||
<div class="units-row">
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>Recent News</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 10 (where .Data.Pages.ByDate "Section" "news").Reverse }}
|
||||
<li><i class="fa-li fa fa-newspaper-o fa-fw" style="color:#b00;font-size:80%;padding-top:6px;"></i> <a href="{{ .Permalink }}">{{ .Title | safeHTML }}</a>{{if not (isset .Params "grlog") }}, <time><em>{{ .Date.Format "January 2, 2006" }}</em></time>{{ end }} </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<div class="unit-50">
|
||||
<h2>404: Page Not Found</h2>
|
||||
<p class="big">
|
||||
There is no page here at the address you requested. Perhaps try a search to find what you are looking for?
|
||||
</p>
|
||||
<form method="get" action="http://duckduckgo.com/">
|
||||
<input type="search" name="q" maxlength="255" placeholder="Search jeremykidwell.info">
|
||||
<input type="hidden" name="sites" value="jeremykidwell.info"/>
|
||||
<input type="hidden" name="ka" value="Alegreya"/>
|
||||
<input type="hidden" name="k7" value="#faf8f8"/>
|
||||
<input type="hidden" name="kj" value="#b33"/>
|
||||
<input type="hidden" name="ky" value="#fafafa"/>
|
||||
<input type="hidden" name="kx" value="b"/>
|
||||
<input type="hidden" name="ko" value="-1"/>
|
||||
<input type="hidden" name="k1" value="-1"/>
|
||||
<input type="hidden" name="kt" value="Alegreya Sans"/>
|
||||
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" /></form>
|
||||
</div>
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>Recent News</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 10 (where .Data.Pages.ByDate "Section" "news").Reverse }}
|
||||
<li><i class="fa-li fa fa-newspaper-o fa-fw" style="color:#b00;font-size:80%;padding-top:6px;"></i> <a href="{{ .Permalink }}">{{ .Title | safeHTML }}</a>{{if not (isset .Params "grlog") }}, <time><em>{{ .Date.Format "January 2, 2006" }}</em></time>{{ end }} </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="news">→ All News</a></nav>
|
||||
</footer>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="news">→ All News</a></nav>
|
||||
</footer>
|
||||
|
||||
<h2>Recent Writing</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 5 (where .Data.Pages.ByDate "Section" "writing").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:#e88;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}}/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="writing">→ All Writing</a></nav>
|
||||
</footer>
|
||||
<h2>Recent Writing</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range first 5 (where .Data.Pages.ByDate "Section" "writing").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:#e88;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}}/papers/{{ .Params.file }}" class="badge badge-small"><i class="fa fa-file-pdf-o"></i> pdf</a>{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
|
||||
<h2>Recent & Upcoming Presentations</h2>
|
||||
<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>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="presentation">→ All Presentations</a></nav>
|
||||
</footer>
|
||||
|
||||
<h2>Recent & Upcoming Classes</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range (where .Data.Pages.ByDate "Section" "class").Reverse }}
|
||||
{{ if (ge .Date.Unix now.Unix) }}
|
||||
{{ if (le .Date.Unix (add now.Unix 7776000)) }}
|
||||
<li><i class="fa-li fa {{ if eq .Params.host "Coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#b00;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" "class").Reverse }}
|
||||
{{ if (le .Date.Unix now.Unix) }}
|
||||
{{ if (le now.Unix (add .Date.Unix .Params.duration)) }}
|
||||
<li><i class="fa-li fa {{ if eq .Params.host "Coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#e88;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" "class").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 {{ if eq .Params.host "coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#e88;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="writing">→ All Writing</a></nav>
|
||||
</footer>
|
||||
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="class">→ All Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Recent & Upcoming Presentations</h2>
|
||||
<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>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="presentation">→ All Presentations</a></nav>
|
||||
</footer>
|
||||
|
||||
</div><!-- /end .wrapper -->
|
||||
<h2>Recent & Upcoming Classes</h2>
|
||||
<ul class="compact fa-ul">
|
||||
{{ range (where .Data.Pages.ByDate "Section" "class").Reverse }}
|
||||
{{ if (ge .Date.Unix now.Unix) }}
|
||||
{{ if (le .Date.Unix (add now.Unix 7776000)) }}
|
||||
<li><i class="fa-li fa {{ if eq .Params.host "Coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#b00;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" "class").Reverse }}
|
||||
{{ if (le .Date.Unix now.Unix) }}
|
||||
{{ if (le now.Unix (add .Date.Unix .Params.duration)) }}
|
||||
<li><i class="fa-li fa {{ if eq .Params.host "Coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#e88;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" "class").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 {{ if eq .Params.host "coursera" }}fa-laptop {{ else }}fa-mortar-board {{ end }}fa-fw" style="color:#e88;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>
|
||||
|
||||
|
||||
<hr class="separator">
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="class">→ All Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ partial "whatisthis.html" . }}
|
||||
</div><!-- /end .wrapper -->
|
||||
|
||||
{{ partial "foot.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<hr class="separator">
|
||||
|
||||
{{ partial "whatisthis.html" . }}
|
||||
|
||||
{{ partial "foot.html" . }}
|
||||
</body>
|
||||
</html>
|
169
public/404.html
169
public/404.html
|
@ -19,98 +19,107 @@
|
|||
|
||||
|
||||
<body>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
<nav class="navbar">
|
||||
<ul>
|
||||
<li class="hd"><span><a href="https://jeremykidwell.info/"><b>consequently.org</b></a></span></li>
|
||||
<li><a href="https://jeremykidwell.info//news">News</a></li>
|
||||
<li><a href="https://jeremykidwell.info//writing">Writing</a></li>
|
||||
<li><a href="https://jeremykidwell.info//presentation">Presentations</a></li>
|
||||
<li><a href="https://jeremykidwell.info//class">Classes</a></li>
|
||||
<li><a href="#searchsite">Search</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
<div id="topbar">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
|
||||
<div class="wrapper">
|
||||
<nav class="navbar">
|
||||
<ul>
|
||||
<li><a href="https://jeremykidwell.info/">Jeremy Kidwell</a></li>
|
||||
|
||||
|
||||
<li><span> <a class="" href="https://jeremykidwell.info/publications">Publications </a></span>
|
||||
|
||||
<li><span> <a class="" href="https://jeremykidwell.info/resources">Resources </a></span>
|
||||
|
||||
<li><span> <a class="" href="https://jeremykidwell.info/presentations">Presentations </a></span>
|
||||
|
||||
<li><span> <a class="" href="https://jeremykidwell.info/teaching">Teaching </a></span>
|
||||
|
||||
<li><span> <a class="" href="https://jeremykidwell.info/blog">Blog </a></span>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div class="units-row">
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>404: Page Not Found</h2>
|
||||
<p class="big">
|
||||
There is no page here at the address you requested. Perhaps try a search to find what you are looking for?
|
||||
</p>
|
||||
<form method="get" action="http://duckduckgo.com/">
|
||||
<input type="search" name="q" maxlength="255" placeholder="Search consequently.org">
|
||||
<input type="hidden" name="sites" value="consequently.org"/>
|
||||
<input type="hidden" name="ka" value="Alegreya"/>
|
||||
<input type="hidden" name="k7" value="#faf8f8"/>
|
||||
<input type="hidden" name="kj" value="#b33"/>
|
||||
<input type="hidden" name="ky" value="#fafafa"/>
|
||||
<input type="hidden" name="kx" value="b"/>
|
||||
<input type="hidden" name="ko" value="-1"/>
|
||||
<input type="hidden" name="k1" value="-1"/>
|
||||
<input type="hidden" name="kt" value="Alegreya Sans"/>
|
||||
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" /></form>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>Recent News</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
<div class="units-row">
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>404: Page Not Found</h2>
|
||||
<p class="big">
|
||||
There is no page here at the address you requested. Perhaps try a search to find what you are looking for?
|
||||
</p>
|
||||
<form method="get" action="http://duckduckgo.com/">
|
||||
<input type="search" name="q" maxlength="255" placeholder="Search jeremykidwell.info">
|
||||
<input type="hidden" name="sites" value="jeremykidwell.info"/>
|
||||
<input type="hidden" name="ka" value="Alegreya"/>
|
||||
<input type="hidden" name="k7" value="#faf8f8"/>
|
||||
<input type="hidden" name="kj" value="#b33"/>
|
||||
<input type="hidden" name="ky" value="#fafafa"/>
|
||||
<input type="hidden" name="kx" value="b"/>
|
||||
<input type="hidden" name="ko" value="-1"/>
|
||||
<input type="hidden" name="k1" value="-1"/>
|
||||
<input type="hidden" name="kt" value="Alegreya Sans"/>
|
||||
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" /></form>
|
||||
</div>
|
||||
|
||||
<div class="unit-50">
|
||||
<h2>Recent News</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="news">→ All News</a></nav>
|
||||
</footer>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="news">→ All News</a></nav>
|
||||
</footer>
|
||||
|
||||
<h2>Recent Writing</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="writing">→ All Writing</a></nav>
|
||||
</footer>
|
||||
<h2>Recent Writing</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<h2>Recent & Upcoming Presentations</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="presentation">→ All Presentations</a></nav>
|
||||
</footer>
|
||||
|
||||
<h2>Recent & Upcoming Classes</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="writing">→ All Writing</a></nav>
|
||||
</footer>
|
||||
|
||||
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="class">→ All Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Recent & Upcoming Presentations</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
</ul>
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="presentation">→ All Presentations</a></nav>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
<h2>Recent & Upcoming Classes</h2>
|
||||
<ul class="compact fa-ul">
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<hr class="separator">
|
||||
<footer class="group">
|
||||
<nav class="navbar navbar-right"><a href="class">→ All Classes</a></nav>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wrapper" style="font-size: 0.9em; line-height: 1.05em;">
|
||||
</div>
|
||||
|
||||
|
||||
<hr class="separator">
|
||||
|
||||
<div class="wrapper" style="font-size: 0.9em; line-height: 1.05em;">
|
||||
<div class="units-row units-padding">
|
||||
<div class="unit-40">
|
||||
<h3>about</h3>
|
||||
|
@ -151,9 +160,9 @@
|
|||
</div>
|
||||
|
||||
|
||||
<footer id="footer">
|
||||
<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 2003–2017.
|
||||
</section>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</body>
|
||||
</html>
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
<p>This is a talk presented at the <a href="https://www.eventbrite.co.uk/e/learning-the-lessons-of-working-with-the-british-librarys-digital-content-and-data-for-your-tickets-32351805120">British Library Labs Road Show</a>, at the University of Birmingham</p>
|
||||
|
||||
<p>My slides (which used <a href="impress.js">http://impress.github.io/impress.js/</a>) are <a href="http://jeremykidwell.info/presentations/presentation-20170511-bl_mapping.html">available here</a></p>
|
||||
<p>My slides (which used <a href="impress.js">http://impress.github.io/impress.js/</a>) are <a href="https://jeremykidwell.info/files/presentations/presentation-20170511-bl_mapping.html">available here</a></p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
|
@ -69,6 +69,26 @@
|
|||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Digital Humanities projects in 2016</title>
|
||||
<link>https://jeremykidwell.info/presentations/digi_champs/</link>
|
||||
<pubDate>Thu, 19 Jan 2017 15:00:00 +0100</pubDate>
|
||||
<author>Jeremy Kidwell</author>
|
||||
<guid>https://jeremykidwell.info/presentations/digi_champs/</guid>
|
||||
<description><p>My slides (which used <a href="reveal.js">http://lab.hakim.se/reveal-js/#/</a>) are <a href="https://jeremykidwell.info/files/presentations/presentation_20170118_digital_hum.html">available here</a></p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Mapping Churches</title>
|
||||
<link>https://jeremykidwell.info/presentations/church_stats_mapping/</link>
|
||||
<pubDate>Fri, 06 Jan 2017 15:00:00 +0100</pubDate>
|
||||
<author>Jeremy Kidwell</author>
|
||||
<guid>https://jeremykidwell.info/presentations/church_stats_mapping/</guid>
|
||||
<description><p>Keynote (sorry!) slides can be <a href="https://jeremykidwell.info/files/presentations/presentation-20160106-mapping_churches.key.zip">downloaded here</a></p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>The Theology of Craft and the Craft of Work: From Tabernacle to Eucharist</title>
|
||||
<link>https://jeremykidwell.info/publications/craft_book/</link>
|
||||
|
@ -109,78 +129,5 @@
|
|||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A poem for your friday</title>
|
||||
<link>https://jeremykidwell.info/blog/archives/2016/02/08/friday-poem/</link>
|
||||
<pubDate>Mon, 08 Feb 2016 00:00:00 UTC</pubDate>
|
||||
<author>Jeremy Kidwell</author>
|
||||
<guid>https://jeremykidwell.info/blog/archives/2016/02/08/friday-poem/</guid>
|
||||
<description><p>&ldquo;The Heaven of Animals&rdquo; by James L. Dickey</p>
|
||||
|
||||
<p>Here they are. The soft eyes open.
|
||||
If they have lived in a wood
|
||||
It is a wood.
|
||||
If they have lived on plains
|
||||
It is grass rolling
|
||||
Under their feet forever.</p>
|
||||
|
||||
<p>Having no souls, they have come,
|
||||
Anyway, beyond their knowing.
|
||||
Their instincts wholly bloom
|
||||
And they rise.
|
||||
The soft eyes open.</p>
|
||||
|
||||
<p>To match them, the landscape flowers,
|
||||
Outdoing, desperately
|
||||
Outdoing what is required:
|
||||
The richest wood,
|
||||
The deepest field.</p>
|
||||
|
||||
<p>For some of these,
|
||||
It could not be the place
|
||||
It is, without blood.
|
||||
These hunt, as they have done,
|
||||
But with claws and teeth grown perfect,</p>
|
||||
|
||||
<p>More deadly than they can believe.
|
||||
They stalk more silently,
|
||||
And crouch on the limbs of trees,
|
||||
And their descent
|
||||
Upon the bright backs of their prey</p>
|
||||
|
||||
<p>May take years
|
||||
In a sovereign floating of joy.
|
||||
And those that are hunted
|
||||
Know this as their life,
|
||||
Their reward: to walk</p>
|
||||
|
||||
<p>Under such trees in full knowledge
|
||||
Of what is in glory above them,
|
||||
And to feel no fear,
|
||||
But acceptance, compliance.
|
||||
Fulfilling themselves without pain</p>
|
||||
|
||||
<p>At the cycle’s center,
|
||||
They tremble, they walk
|
||||
Under the tree,
|
||||
They fall, they are torn,
|
||||
They rise, they walk again.</p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Time for Business: Business Ethics, Sustainability, and Giorgio Agamben’s ‘Messianic Time’</title>
|
||||
<link>https://jeremykidwell.info/publications/time_for_business/</link>
|
||||
<pubDate>Wed, 20 Jan 2016 00:00:00 UTC</pubDate>
|
||||
<author>Jeremy Kidwell</author>
|
||||
<guid>https://jeremykidwell.info/publications/time_for_business/</guid>
|
||||
<description><p>Abstract</p>
|
||||
|
||||
<p>Contemporary business continues to intensify its radical relation to time. The New York Stock Exchange recently announced that in pursuing (as traders call it) the ‘race to zero’ they will begin using laser technology originally developed for military communications to send information about trades nearly at the speed of light. This is just one example of short-term temporal rhythms embedded in the practices of contemporary firms which watch their stock price on an hourly basis, report their earnings quarterly, and dissolve future consequences and costs through discounting procedures. There is reason to believe that these radical conceptions of time and its passing impair the ability of businesses to function in a morally coherent manner. In the spirit of other recent critiques of modern temporality such as David Couzen Hoy&rsquo;s The Time of Our Lives, in this paper, I present a critique of the temporality of modern business. In response, I assess the recent attempt to provide an alternative account of temporality using theological concepts by Giorgio Agamben. I argue that Agamben’s more integrative account of messianic time provides a richer ambitemporal account which might provide a viable temporality for a new sustainable economic future.</p>
|
||||
|
||||
<p><a href="http://www.de-ethica.com/archive/articles/default.asp?DOI=10.3384/de-ethica.2001-8819.152339" target="_blank" rel="noopener noreferrer">Journal Website</a></p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
|
@ -27,6 +27,16 @@
|
|||
<lastmod>2017-01-20T15:00:00+01:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jeremykidwell.info/presentations/digi_champs/</loc>
|
||||
<lastmod>2017-01-19T15:00:00+01:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jeremykidwell.info/presentations/church_stats_mapping/</loc>
|
||||
<lastmod>2017-01-06T15:00:00+01:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://jeremykidwell.info/publications/craft_book/</loc>
|
||||
<lastmod>2016-09-01T00:00:00+00:00</lastmod>
|
||||
|
|
Loading…
Reference in a new issue