small fixes and content updates
This commit is contained in:
parent
fdfb1eb10b
commit
4295b135f1
|
@ -1,6 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
|
||||||
{{ partial "meta.html" . }}
|
{{ partial "meta.html" . }}
|
||||||
|
@ -11,8 +11,8 @@
|
||||||
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
||||||
|
|
||||||
{{ partial "head_includes.html" . }}
|
{{ partial "head_includes.html" . }}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="topbar">
|
<div id="topbar">
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<header>
|
<header>
|
||||||
|
@ -34,11 +34,7 @@
|
||||||
<p></p>
|
<p></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<<<<<<< HEAD
|
|
||||||
{{ range first 4 ((where .Data.Pages.ByDate "Section" "blog").Reverse) }}
|
{{ range first 4 ((where .Data.Pages.ByDate "Section" "blog").Reverse) }}
|
||||||
=======
|
|
||||||
{{ range first 5 ((where .Data.Pages.ByDate "Section" "blog").Reverse) }}
|
|
||||||
>>>>>>> ad061bf5da969819ab07a42ecac5fa2069916a04
|
|
||||||
<div class="units-row-end">
|
<div class="units-row-end">
|
||||||
<div class="unit-33 dateblock">
|
<div class="unit-33 dateblock">
|
||||||
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
||||||
|
@ -53,8 +49,11 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div class="units-row-end">
|
<div class="units-row-end">
|
||||||
<div class="unit-33 dateblock"> </div>
|
<div class="unit-33 dateblock"> </div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -80,14 +79,14 @@
|
||||||
<h3>Recent & Upcoming Presentations</h3>
|
<h3>Recent & Upcoming Presentations</h3>
|
||||||
<ul class="compact fa-ul">
|
<ul class="compact fa-ul">
|
||||||
{{ range (where .Data.Pages.ByDate "Section" "presentations").Reverse }}
|
{{ range (where .Data.Pages.ByDate "Section" "presentations").Reverse }}
|
||||||
{{ if (ge .Date.Unix .Now.Unix) }}
|
{{ if (ge .Date.Unix now.Unix) }}
|
||||||
{{ if (le .Date.Unix (add .Now.Unix 10368000)) }}
|
{{ 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><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>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if (ge .Now.Unix .Date.Unix ) }}
|
{{ if (ge now.Unix .Date.Unix ) }}
|
||||||
{{ if (le .Now.Unix (add .Date.Unix 12368000)) }}
|
{{ 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><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>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue