aboutsummaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'themes/neonxp/layouts/_default')
-rw-r--r--themes/neonxp/layouts/_default/baseof.html17
-rw-r--r--themes/neonxp/layouts/_default/home.html29
-rw-r--r--themes/neonxp/layouts/_default/list.html29
-rw-r--r--themes/neonxp/layouts/_default/rss.xml47
-rw-r--r--themes/neonxp/layouts/_default/single.html46
5 files changed, 0 insertions, 168 deletions
diff --git a/themes/neonxp/layouts/_default/baseof.html b/themes/neonxp/layouts/_default/baseof.html
deleted file mode 100644
index e2e4362..0000000
--- a/themes/neonxp/layouts/_default/baseof.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
-<head>
- {{ partial "head.html" . }}
-</head>
-<body>
- <main class="container">
- <header>
- {{ partial "header.html" . }}
- </header>
- {{ block "main" . }}{{ end }}
- <footer>
- {{ partial "footer.html" . }}
- </footer>
- </main>
-</body>
-</html>
diff --git a/themes/neonxp/layouts/_default/home.html b/themes/neonxp/layouts/_default/home.html
deleted file mode 100644
index d1ec7bc..0000000
--- a/themes/neonxp/layouts/_default/home.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{ define "main" }}
-<div class="row">
- <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
- <article>
- <header>Навигатор</header>
- {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
- </article>
- </div>
- <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
- <article>
- <header>
- <div class="row between-sm">
- <span class="p-name"> {{ .Title }} </span>
- <a href="/posts/index.xml">{{ partial "icon.html" "rss" }}</a>
- </div>
- </header>
- <div class="e-content">
- {{ .Content }}
- </div>
- </article>
- {{ $pages := where site.RegularPages "Type" "posts" }}
- {{ $paginator := .Paginate $pages 7 }}
- {{ range $paginator.Pages }}
- {{ partial "list.html" . }}
- {{ end }}
- <nav>{{ partial "pagination.html" . }}</nav>
- </div>
-</div>
-{{ end }}
diff --git a/themes/neonxp/layouts/_default/list.html b/themes/neonxp/layouts/_default/list.html
deleted file mode 100644
index 208d565..0000000
--- a/themes/neonxp/layouts/_default/list.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{ define "main" }}
-<div class="row">
- <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
- <article>
- <header>Навигатор</header>
- {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
- </article>
- </div>
- <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
- {{ if .Title }}
- <article>
- <header>
- <div class="row between-sm">
- <span class="p-name"> {{ .Title }} </span>
- <a href="index.xml">{{ partial "icon.html" "rss" }}</a>
- </div>
- </header>
- {{ .Content }}
- </article>
- {{ end }}
- {{ $paginator := .Paginate .Pages 7 }}
- {{ range $paginator.Pages }}
- {{ partial "list.html" . }}
- {{ end }}
- <nav>{{ partial "pagination.html" . }}</nav>
- </div>
-</div>
-
-{{ end }}
diff --git a/themes/neonxp/layouts/_default/rss.xml b/themes/neonxp/layouts/_default/rss.xml
deleted file mode 100644
index da8fb0c..0000000
--- a/themes/neonxp/layouts/_default/rss.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-{{- $pctx := . -}}
-{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
-{{- $pages := slice -}}
-{{- if or $.IsHome $.IsSection -}}
-{{- $pages = $pctx.RegularPages -}}
-{{- else -}}
-{{- $pages = $pctx.Pages -}}
-{{- end -}}
-{{- $pages := where $pages "Params.hidden" "!=" true -}}
-{{- $limit := .Site.Config.Services.RSS.Limit -}}
-{{- if ge $limit 1 -}}
-{{- $pages = $pages | first $limit -}}
-{{- end -}}
-{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
-{{- printf "<?xml-stylesheet href=\"/rss.xsl\" type=\"text/xsl\"?>" | safeHTML }}
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
- <channel>
- <title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
- <link>{{ .Permalink }}</link>
- <description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
- <generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
- <language>{{.}}</language>{{end}}{{ with .Site.Params.Author.email }}
- <managingEditor>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Params.Author.email }}
- <webMaster>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
- <copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
- <lastBuildDate>{{ (index $pages.ByLastmod.Reverse 0).Lastmod.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
- {{- with .OutputFormats.Get "RSS" -}}
- {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
- {{- end -}}
- {{ range $pages }}
- {{- $content := safeHTML (.Summary | html) -}}
- {{- if .Params.Description -}}
- {{- $content = safeHTML ( .Params.Description | html) -}}
- {{- end -}}
- <item>
- <title>{{ .Title }}</title>
- <link>{{ .Permalink }}</link>
- <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
- {{ with .Site.Params.Author.email }}<author>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</author>{{end}}
- <guid>{{ .Permalink }}</guid>
- <description>
- {{ $content }}
- </description>
- </item>
- {{ end }}
- </channel>
-</rss>
diff --git a/themes/neonxp/layouts/_default/single.html b/themes/neonxp/layouts/_default/single.html
deleted file mode 100644
index e959051..0000000
--- a/themes/neonxp/layouts/_default/single.html
+++ /dev/null
@@ -1,46 +0,0 @@
-{{ define "main" }}
-<div class="row">
- <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
- {{ if .Params.toc }}
- <article>
- <header>Содержание</header>
- <aside>{{ .TableOfContents }}</aside>
- </article>
- {{ end }}
- <article>
- <header>Навигатор</header>
- {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
- </article>
- </div>
- <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
- <article>
- <header>
- <div class="row between-sm">
- <span class="p-name"> {{ .Title }} </span>
- {{ if .Date }}
- {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
- {{ $dateHuman := .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") }}
- <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
- {{ end }}
- </div>
- </header>
- <div class="p-summary">{{ .Summary }}</div>
- <div class="e-content">{{ .Content }}</div>
- <footer>
- <div class="row between-sm">
- <span>
- {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
- </span>
-
- <a class="u-url" href="{{ .Permalink }}">#</a>
-
- {{ if .Params.Location }}
- <span class="p-location">@ {{.Params.Location}}</span>
- {{ end }}
- </div>
- </footer>
- </article>
- {{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}
- </div>
-</div>
-{{ end }}