first commit

This commit is contained in:
Jeremy Kidwell 2017-06-26 20:57:02 +01:00
commit 13e2fd6e74
125 changed files with 19943 additions and 0 deletions

4
layouts/teaching/li.html Executable file
View file

@ -0,0 +1,4 @@
<li>
<h3 id="teaching"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<div class="meta">{{ .Date.Format "Jan 2, 2006" }}</div>
</li>

31
layouts/teaching/single.html Executable file
View file

@ -0,0 +1,31 @@
{{ template "partials/header.html" . }}
<body lang="en" itemscope itemtype="http://schema.org/Article">
<div id="topbar">
<div class="wrapper">
<header>
{{ template "partials/sidebar.html" . }}
{{ $baseurl := .Site.BaseURL }}
</header>
</div>
</div>
<div class="wrapper">
<div class="units-row">
<div class="unit-centered unit-80">
<article class="post" id="content">
<h3>{{ .Title }}</h3>
{{ .Content }}
</article>
</div>
</div>
</div>
<hr class="separator">
{{ partial "whatisthis.html" . }}
{{ partial "footer.html" . }}

11
layouts/teaching/summary.html Executable file
View file

@ -0,0 +1,11 @@
<article class="postlist">
<header>
<div class="meta"><h4>{{ .Date.Format "Mon, Jan 2, 2006" }}</h4></div>
<h2><a href='{{ .Permalink }}'> {{ .Title }}</a> </h2>
</header>
{{ .Summary }}
<footer>
<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
</footer>
</article>