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

github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/homepage.html')
-rw-r--r--layouts/partials/homepage.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/layouts/partials/homepage.html b/layouts/partials/homepage.html
deleted file mode 100644
index aad1866..0000000
--- a/layouts/partials/homepage.html
+++ /dev/null
@@ -1,27 +0,0 @@
- <div class="container">
- {{ if isset .Site.Params.showBlogHeader true }}
- <div class="row">
- <header>
- {{ partial "content/h1-title" . }}
- <span>{{ .Site.Data.Strings.lastupdate }}:
- <time datetime="{{ .Site.LastChange.Format "2006-01-02T15:04:05Z07:00" }}">
- {{ .Site.LastChange.Format .Site.Data.Formats.datetime }}
- </time>
- </span>
- </header>
- </div>
- {{ end }}
- <div class="row m-l-0 m-r-0">
- <div class="col-xs-12 col-md-9">
- {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
- {{ range $paginator.Pages.ByDate.Reverse }}
- {{ .Render "summary" }}
- {{ end }}
- {{ partial "content/pagination" . }}
- </div>
- <div class="col-xs-12 col-md-3">
- {{ partial "content/sidebar" . }}
- </div>
- </div>
-
- </div>