This commit is contained in:
parent
6e613d7b15
commit
5992869fd3
93 changed files with 9485 additions and 1277 deletions
54
themes/archie/layouts/_default/single.html
Normal file
54
themes/archie/layouts/_default/single.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
<article>
|
||||
<div class="post-container">
|
||||
<!-- Main Content -->
|
||||
<div class="post-content">
|
||||
<div class="title">
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
<div class="meta">Posted on {{ dateFormat ":date_medium" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</div>
|
||||
</div>
|
||||
{{ if isset .Params "tldr" }}
|
||||
<div class="tldr">
|
||||
<strong>tl;dr:</strong>
|
||||
{{ .Params.tldr }}
|
||||
</div>{{ end }}
|
||||
<section class="body">
|
||||
{{ .Content }}
|
||||
</section>
|
||||
<div class="post-tags">
|
||||
{{ if ne .Type "page" }}
|
||||
{{ if gt .Params.tags 0 }}
|
||||
<nav class="nav tags">
|
||||
<ul class="tags">
|
||||
{{ range .Params.tags }}
|
||||
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- TOC -->
|
||||
{{ if isset .Params "toc" }}
|
||||
<div class="toc">
|
||||
<strong>Table of contents:</strong>
|
||||
{{ .TableOfContents }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<!-- Disqus -->
|
||||
{{- $.Scratch.Set "isDisqus" true -}}
|
||||
{{ if not .Site.Config.Services.Disqus.Shortname }}
|
||||
{{- $.Scratch.Set "isDisqus" false -}}
|
||||
{{ end }}
|
||||
|
||||
{{- if eq ($.Scratch.Get "isDisqus") true -}}
|
||||
{{- partial "disqus.html" . -}}
|
||||
{{- end -}}
|
||||
</article>
|
||||
</main>
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue