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:
authorAlexander 'AlexFinn' Ivanov <alex@alexfinn.eu>2014-06-24 15:51:53 +0400
committerAlexander 'AlexFinn' Ivanov <alex@alexfinn.eu>2014-06-24 15:51:53 +0400
commit5daed81bc97c5786ec1a86974c148fc5e9f38680 (patch)
treebad279d773513e51ed0340df1008ccff24850a1d /layouts/_default
parentda740601003ab40769b97e92b262bb21a333ed4b (diff)
Removed old files
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/indexes.html6
-rw-r--r--layouts/_default/li.html5
-rw-r--r--layouts/_default/single.html28
3 files changed, 0 insertions, 39 deletions
diff --git a/layouts/_default/indexes.html b/layouts/_default/indexes.html
deleted file mode 100644
index c5af277..0000000
--- a/layouts/_default/indexes.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<section id="main">
- <div>
- <h1 id="title">{{ .Title }}</h1>
- <ul></ul>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/_default/li.html b/layouts/_default/li.html
deleted file mode 100644
index 0376bbc..0000000
--- a/layouts/_default/li.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<li>
- <a href="{{ .Permalink }}">{{ .Title }}</a>
- <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
-</li>
- \ No newline at end of file
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" . }}