Add development styles and DRAFT tags; update layout of list and single templates

This commit is contained in:
Eryn Wells 2021-12-26 13:04:55 -07:00
parent 9d428d8913
commit 7cf5efa991
5 changed files with 54 additions and 28 deletions

View file

@ -1,20 +1,19 @@
{{ define "main" }}
<article class="post-single">
<header class="post-title">
<p>
<time>{{ .Date | time.Format "Jan 2, 2006" }}</time>
</p>
<h1>{{ .Title }}</h1>
<h1>{{ .Title }}{{ partial "development/draft_tag.html" . }}</h1>
<span class="post-date"><time>{{ .Date | time.Format "Jan 2, 2006" }}</time></p>
</header>
<section class="post-content">{{ .Content }}</section>
<!-- Post Tags -->
{{ if .Params.tags }}
<footer class="post-tags">
<footer>
<ul class="post-tags">
{{ range .Params.tags }} {{ $href := print (absURL "tags/") (urlize .) }}
<a href="{{ $href }}">{{ . }}</a>
<li><a href="{{ $href }}">{{ . }}</a></li>
{{ end }}
</ul>
</footer>
{{ end }}
@ -29,18 +28,5 @@
{{ end }}
</nav>
{{ end }}
<!-- Disqus -->
{{ if and site.DisqusShortname (not (eq .Params.comments false)) }}
<div id="disqus_thread" class="post-comments"></div>
<script>
var disqusShortname = '{{ site.DisqusShortname }}';
var script = document.createElement('script');
script.src = 'https://' + disqusShortname + '.disqus.com/embed.js';
script.setAttribute('data-timestamp', +new Date());
document.head.appendChild(script);
</script>
{{ end }}
</article>
{{ end }}