Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
deleted file mode 100644
index 0f01e0a..0000000
--- a/layouts/_default/single.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{{ $baseurl := .Site.BaseUrl }}
-{{ template "theme/chrome/header.html" . }}
-<!-- CONTENT -->
-<div class="post">
- <header class="post-header">
- <h1><a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
- <div class="post-time">{{ .Date.Format "January 2 2006" }}</div>
- </header>
- <div class="post-after">
- <div class="tags">
- {{ range .Params.tags }}
- <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a>
- {{ end }}
- </div>
- </div>
-</div>
-<hr>
-<div class="post content">
- {{ .Content }}
-</div>
-<!-- END CONTENT -->
-
-{{ template "theme/chrome/about.html" . }}
- <nav id="pagination">
- {{if .Prev}}<a class="prev" href="{{.Prev.Permalink}}">Prev</a>{{end}}
- {{if .Next}}<a class="next" href="{{.Next.Permalink}}">Next</a>{{end}}
- </nav>
-{{ template "theme/chrome/footer.html" . }}