summaryrefslogtreecommitdiff
path: root/themes/CodeIT/layouts/partials/single
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2022-08-14 19:01:21 +0200
committerChristoph Cullmann <cullmann@kde.org>2022-08-14 19:01:21 +0200
commit51fb029ca27d67d7cd67352cdede45e5b25868f7 (patch)
tree6d8e34b2abdc757310ffe11189e926d017417bae /themes/CodeIT/layouts/partials/single
parent260b6803e78609e16ad3d59792f1681d9df0f1e4 (diff)
switch back to LoveIt, other theme is deprectated
Diffstat (limited to 'themes/CodeIT/layouts/partials/single')
-rw-r--r--themes/CodeIT/layouts/partials/single/footer.html72
1 files changed, 0 insertions, 72 deletions
diff --git a/themes/CodeIT/layouts/partials/single/footer.html b/themes/CodeIT/layouts/partials/single/footer.html
deleted file mode 100644
index d0ec4ee..0000000
--- a/themes/CodeIT/layouts/partials/single/footer.html
+++ /dev/null
@@ -1,72 +0,0 @@
-{{- $params := .Scratch.Get "params" -}}
-
-<div class="post-footer" id="post-footer">
- <div class="post-info">
- <div class="post-info-line">
- <div class="post-info-mod">
- <span>
- {{- with .Site.Params.dateformat | default "2006-01-02" | .Lastmod.Format -}}
- {{- dict "Date" . | T "updatedOnDate" -}}
- {{- if $.Site.Params.gitRepo -}}
- {{- with $.GitInfo -}}
- &nbsp;<a class="git-hash" href="{{ printf `%v/commit/%v` $.Site.Params.gitRepo .Hash }}" target="_blank" rel="noopener noreferrer" title="commit by {{ .AuthorName }}({{ .AuthorEmail }}) {{ .Hash }}: {{ .Subject }}">
- <i class="fas fa-hashtag fa-fw"></i>{{- .AbbreviatedHash -}}
- </a>
- {{- end -}}
- {{- end -}}
- {{- end -}}
- </span>
- </div>
- <div class="post-info-license">
- {{- with $params.license | string -}}
- <span>
- {{- . | safeHTML -}}
- </span>
- {{- end -}}
- </div>
- </div>
- <div class="post-info-line">
- <div class="post-info-md">
- {{- if $params.linktomarkdown -}}
- {{- with .OutputFormats.Get "markdown" -}}
- <span>
- <a class="link-to-markdown" href="{{ .RelPermalink }}" target="_blank" rel="noopener noreferrer">
- {{- T "readMarkdown" -}}
- </a>
- </span>
- {{- end -}}
- {{- end -}}
- </div>
- <div class="post-info-share">
- <span>
- {{- partial "plugin/share.html" . -}}
- </span>
- </div>
- </div>
- </div>
-
- <div class="post-info-more">
- <section class="post-tags">
- {{- with .Params.tags -}}
- <i class="fas fa-tags fa-fw"></i>&nbsp;
- {{- range $index, $value := . -}}
- {{- if gt $index 0 }},&nbsp;{{ end -}}
- {{- $tag := partialCached "function/path.html" $value $value | printf "/tags/%v" | $.Site.GetPage -}}
- <a href="{{ $tag.RelPermalink }}">{{ $tag.Title }}</a>
- {{- end -}}
- {{- end -}}
- </section>
- <section>
- <span><a href="javascript:void(0);" onclick="window.history.back();">{{ T "back" }}</a></span>&nbsp;|&nbsp;<span><a href="{{ .Site.Home.RelPermalink }}">{{ T "home" }}</a></span>
- </section>
- </div>
-
- <div class="post-nav">
- {{- if .PrevInSection -}}
- <a href="{{ .PrevInSection.RelPermalink }}" class="prev" rel="prev" title="{{ .PrevInSection.Title }}"><i class="fas fa-angle-left fa-fw"></i>{{ .PrevInSection.Title }}</a>
- {{- end -}}
- {{ if .NextInSection }}
- <a href="{{ .NextInSection.RelPermalink }}" class="next" rel="next" title="{{ .NextInSection.Title }}">{{ .NextInSection.Title }}<i class="fas fa-angle-right fa-fw"></i></a>
- {{- end -}}
- </div>
-</div>