disable nonexistent metadata.html partial
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Aadil Ayub 2021-07-06 13:29:16 +05:00
parent d484c89f93
commit 96b524b5c9
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
{{/* partial "metadata.html" . */}}
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>

View File

@ -1,6 +1,6 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ partial "metadata.html" . }}
{{/* partial "metadata.html" . */}}
<br><br>
{{ .Content }}
{{ end }}