about summary refs log tree commit diff
path: root/layouts/_default/comic.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/comic.html')
-rw-r--r--layouts/_default/comic.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/layouts/_default/comic.html b/layouts/_default/comic.html
deleted file mode 100644
index 508df3c..0000000
--- a/layouts/_default/comic.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{ define "main" }}
-{{ if .Menus }}
-<nav class="post-navigation">
-  {{ range .Menus }}
-  <a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
-  {{ end }}
-</nav>
-{{ end }}
-
-<article class="post h-entry">
-  <header class="post-header">
-    <center>
-      <h1 class="p-name post-title{{ if .Params.draft }} draft{{end}}">{{ trim .Title  " " }}</h1>
-    {{ if in .Params.categories "comics" }}
-    </center>
-    {{ end}}
-  </header>
-  <section class="content e-content">
-    <center>
-    {{ partial "comicNav.html" . }}
-    <img title="{{ .Params.TitleText }}"
-         alt="Comic panels. See transcription below."
-         src="/comics/{{ .Params.ComicId }}/{{ .Params.ComicTitle }}.png"
-         srcset="/comics/{{ .Params.ComicId }}/{{ .Params.ComicTitle }}_full.png 2x"
-         >
-    {{ partial "comicNav.html" . }}
-    </center>
-    <details>
-      <summary>
-        Transcription and extras
-      </summary>
-      {{ .Content }}
-    </details>
-  </section>
-  {{ partial "post-info.html" . }}
-</article>
-
-{{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }}
-  {{ partial "paginationPost.html" . }}
-{{ end }}
-
-
-{{ partial "custom-webring.html" }}
-
-{{ end }}