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/index.html')
-rw-r--r--layouts/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/layouts/index.html b/layouts/index.html
deleted file mode 100644
index aed54e5..0000000
--- a/layouts/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- {{ template "theme/chrome/meta.html" . }}
- {{ template "theme/chrome/includes.html" . }}
- <link rel="shortcut icon" href="/images/alexfinn.ico">
- <link rel="apple-touch-icon" href="">
- <link rel="canonical" href="{{ .Permalink }}">
- <!-- atom & rss feed -->
- <link href="/rss.xml" type="application/atom+xml" rel="alternate" title="{{ .Site.Title }}">
- </head>
-
- <body>
- {{ template "theme/chrome/menu.html" }}
-
-{{ $baseurl := .Site.BaseUrl }}
-
-<div class="container">
- <div class="content">
-
- <div class="row-fluid">
- <div class="span12">
- <div class="posts">
- {{ range .Data.Pages }}
- <article class="post">
-
- <header class="post-header">
- <h1><a href="{{.RelPermalink }}">{{ .Title }}</a></h1>
- <div class="post-time">{{ .Date.Format "January 2 2006" }}, {{ .FuzzyWordCount }} Words</div>
- </header>
-
- <div class="post-after">
- <div class="tags">
- {{ range .Params.tags }}
- <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a>
- {{ end }}
- </div>
- </div>
- </article>
- {{ end }}
- </div>
- </div>
- </div>
-
-{{ template "theme/chrome/footer.html" }}