Fix category title not appearing

This commit is contained in:
Joe Hutchinson
2019-07-19 13:57:21 -04:00
parent 463f593153
commit 60bdad2516

View File

@@ -4,7 +4,7 @@
<body class="list-body">
{{ partial "nav-bar.html" . }}
<main class="card-container side-gutter">
{{ if or (isset .Params "description") (isset .Params "title") -}}
{{ if or (not (eq .Description "")) (not (eq .Title "")) -}}
<header class="list-header">
{{ with .Description }}<p class="list-header-subtext">{{ . }}</p>{{ end }}
{{ with .Title }}<h1 class="list-header-title">{{ . }}</h1>{{ end }}