diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/neonxp/layouts/_default/section.atom.xml | 23 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/footer.html | 1 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/head.html | 12 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/head/css.html | 27 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/head/js.html | 16 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/header.html | 2 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/menu.html | 50 | ||||
| -rw-r--r-- | themes/neonxp/layouts/_partials/terms.html | 27 | ||||
| -rw-r--r-- | themes/neonxp/layouts/baseof.html | 17 | ||||
| -rw-r--r-- | themes/neonxp/layouts/home.html | 21 | ||||
| -rw-r--r-- | themes/neonxp/layouts/page.html | 37 | ||||
| -rw-r--r-- | themes/neonxp/layouts/section.html | 26 | ||||
| -rw-r--r-- | themes/neonxp/layouts/taxonomy.html | 11 | ||||
| -rw-r--r-- | themes/neonxp/layouts/term.html | 7 |
14 files changed, 277 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/_default/section.atom.xml b/themes/neonxp/layouts/_default/section.atom.xml new file mode 100644 index 0000000..9ddb7d2 --- /dev/null +++ b/themes/neonxp/layouts/_default/section.atom.xml @@ -0,0 +1,23 @@ +{{ print "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>"| safeHTML }} +{{ print "<?xml-stylesheet type=\"text/css\" href=\"/css/atom.css\" ?>"| safeHTML }} +<feed xmlns="http://www.w3.org/2005/Atom"> + <title>{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}</title> + <link rel="self" href="{{ .Permalink }}"/> + <updated>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated> + <author> + <name>Alexander NeonXP Kiryukhin</name> + <email>i@neonxp.ru</email> + <uri>https://neonxp.ru/</uri> + </author> + <id>{{ .Permalink }}</id> + {{ range first 15 .Data.Pages }} + <entry> + <title>{{ .Title }}</title> + <link rel="alternate" href="{{ .Permalink }}"/> + <id>{{ .Permalink }}</id> + <published>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</published> + <updated>{{ .Lastmod.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated> + <summary>{{ .Content | html }}</summary> + </entry> + {{ end }} +</feed> diff --git a/themes/neonxp/layouts/_partials/footer.html b/themes/neonxp/layouts/_partials/footer.html new file mode 100644 index 0000000..2c30eaa --- /dev/null +++ b/themes/neonxp/layouts/_partials/footer.html @@ -0,0 +1 @@ +<p>© 2007 — {{ now.Year }} Александр NeonXP Кирюхин. <a href="mailto:i@neonxp.ru">i@neonxp.ru</a></p>
\ No newline at end of file diff --git a/themes/neonxp/layouts/_partials/head.html b/themes/neonxp/layouts/_partials/head.html new file mode 100644 index 0000000..7826e2a --- /dev/null +++ b/themes/neonxp/layouts/_partials/head.html @@ -0,0 +1,12 @@ +<meta charset="utf-8" /> +<meta name="viewport" content="width=device-width, initial-scale=1" /> +<link rel="icon" href="/favicon.ico" type="image/x-icon"> +{{ partial "opengraph.html" . }} +<title> + {{ if .IsHome }} + {{ site.Title }} + {{ else }} + {{ printf "%s | %s" .Title site.Title }} + {{ end }} +</title> +{{ partialCached "head/css.html" . }} {{ partialCached "head/js.html" . }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/_partials/head/css.html b/themes/neonxp/layouts/_partials/head/css.html new file mode 100644 index 0000000..9324758 --- /dev/null +++ b/themes/neonxp/layouts/_partials/head/css.html @@ -0,0 +1,27 @@ +{{- with resources.Get "css/reset.css" }} +{{- if hugo.IsDevelopment }} +<link rel="stylesheet" href="{{ .RelPermalink }}"> +{{- else }} +{{- with . | minify | fingerprint }} +<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> +{{- end }} +{{- end }} +{{- end }} +{{- with resources.Get "css/paper.css" }} +{{- if hugo.IsDevelopment }} +<link rel="stylesheet" href="{{ .RelPermalink }}"> +{{- else }} +{{- with . | minify | fingerprint }} +<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> +{{- end }} +{{- end }} +{{- end }} +{{- with resources.Get "css/main.css" }} +{{- if hugo.IsDevelopment }} +<link rel="stylesheet" href="{{ .RelPermalink }}"> +{{- else }} +{{- with . | minify | fingerprint }} +<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> +{{- end }} +{{- end }} +{{- end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/_partials/head/js.html b/themes/neonxp/layouts/_partials/head/js.html new file mode 100644 index 0000000..1b7c18e --- /dev/null +++ b/themes/neonxp/layouts/_partials/head/js.html @@ -0,0 +1,16 @@ +<!-- {{- with resources.Get "js/main.js" }} + {{- $opts := dict + "minify" (not hugo.IsDevelopment) + "sourceMap" (cond hugo.IsDevelopment "external" "") + "targetPath" "js/main.js" + }} + {{- with . | js.Build $opts }} + {{- if hugo.IsDevelopment }} + <script src="{{ .RelPermalink }}"></script> + {{- else }} + {{- with . | fingerprint }} + <script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script> + {{- end }} + {{- end }} + {{- end }} +{{- end }} -->
\ No newline at end of file diff --git a/themes/neonxp/layouts/_partials/header.html b/themes/neonxp/layouts/_partials/header.html new file mode 100644 index 0000000..7980a00 --- /dev/null +++ b/themes/neonxp/layouts/_partials/header.html @@ -0,0 +1,2 @@ +<h1>{{ site.Title }}</h1> +{{ partial "menu.html" (dict "menuID" "main" "page" .) }} diff --git a/themes/neonxp/layouts/_partials/menu.html b/themes/neonxp/layouts/_partials/menu.html new file mode 100644 index 0000000..ebad53f --- /dev/null +++ b/themes/neonxp/layouts/_partials/menu.html @@ -0,0 +1,50 @@ +{{- /* +Renders a menu for the given menu ID. + +@context {page} page The current page. +@context {string} menuID The menu ID. + +@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $menuID := .menuID }} + +{{- with index site.Menus $menuID }} +<nav> + <ul> + {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} + </ul> +</nav> +{{- end }} + +{{- define "_partials/inline/menu/walk.html" }} +{{- $page := .page }} +{{- range .menuEntries }} +{{- $attrs := dict "href" .URL }} +{{- if $page.IsMenuCurrent .Menu . }} +{{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }} +{{- else if $page.HasMenuCurrent .Menu .}} +{{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }} +{{- end }} +{{- $name := .Name }} +{{- with .Identifier }} +{{- with T . }} +{{- $name = . }} +{{- end }} +{{- end }} +<li> + <a {{- range $k, $v :=$attrs }} {{- with $v }} {{- printf " %s=%q" $k $v | safeHTMLAttr }} {{- end }} {{- end -}}> + {{if .Pre}} + {{.Pre}} + {{end}} + {{ $name }} + </a> + {{- with .Children }} + <ul> + {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} + </ul> + {{- end }} +</li> +{{- end }} +{{- end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/_partials/terms.html b/themes/neonxp/layouts/_partials/terms.html new file mode 100644 index 0000000..f826abb --- /dev/null +++ b/themes/neonxp/layouts/_partials/terms.html @@ -0,0 +1,27 @@ +{{- /* +For a given taxonomy, renders a list of terms assigned to the page. + +@context {page} page The current page. +@context {string} taxonomy The taxonomy. + +@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $taxonomy := .taxonomy }} + +{{- with $page.GetTerms $taxonomy }} +{{- if . }} +<article> + {{- $label := (index . 0).Parent.LinkTitle }} + <div> + <h3>{{ $label }}:</h3> + <ul class="taxonomy"> + {{- range . }} + <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li> + {{- end }} + </ul> + </div> + {{- end }} +</article> +{{- end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/baseof.html b/themes/neonxp/layouts/baseof.html new file mode 100644 index 0000000..39dcbec --- /dev/null +++ b/themes/neonxp/layouts/baseof.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}"> +<head> + {{ partial "head.html" . }} +</head> +<body> + <header> + {{ partial "header.html" . }} + </header> + <main> + {{ block "main" . }}{{ end }} + </main> + <footer> + {{ partial "footer.html" . }} + </footer> +</body> +</html> diff --git a/themes/neonxp/layouts/home.html b/themes/neonxp/layouts/home.html new file mode 100644 index 0000000..1f26b97 --- /dev/null +++ b/themes/neonxp/layouts/home.html @@ -0,0 +1,21 @@ +{{ define "main" }} +<article> + <h1>{{ .Title }}</h1> + {{ .Content }} +</article> +<div class="h-feed"> + {{ range .Pages }} + <article class="h-entry"> + <h2 class="p-name"><a class="u-url" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> + {{if .Date }} + {{ $dateMachine := .Date | time.Format "2006-01-02 15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format ":date_long" }} + <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> + {{end}} + <div class="p-summary"> + {{ .Summary }} + </div> + </article> + {{ end }} +</div> +{{ end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/page.html b/themes/neonxp/layouts/page.html new file mode 100644 index 0000000..506b56a --- /dev/null +++ b/themes/neonxp/layouts/page.html @@ -0,0 +1,37 @@ +{{ define "main" }} +<div class="h-entry"> + <article> + <h1 class="p-name">{{ .Title }}</h1> + {{if .Date }} + {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format ":date_long" }} + <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> + {{end}} + </article> + <article class="e-content"> + {{ .Content }} + </article> + {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} + {{if .Param "comments"}} + <h2>Комментарии</h2> + {{ range $key, $comment := where .Site.Data.comments "url" "eq" .Page.Path }} + <article> + <b>{{$comment.from}}:</b> + <p>{{$comment.comment}}</p> + </article> + {{ else }} + <article>Комментариев пока нет.</article> + {{ end }} + + <article> + {{ $comment := (print "mailto:blog@neonxp.ru?subject=" .Page.Permalink | safeHTML) }} + Для отправки комментария достаточно отправить e-mail со своим комментарием + на адрес + <a href={{$comment}}>blog@neonxp.ru</a>, в теме нужно указать ссылку на + пост.<br /> + Или просто нажать кнопку ниже. Всё очень просто :)<br /> + <a class="btn-primary" href={{$comment}}>Написать комментарий</a> + </article> + {{end}} +</div> +{{ end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/section.html b/themes/neonxp/layouts/section.html new file mode 100644 index 0000000..a330f20 --- /dev/null +++ b/themes/neonxp/layouts/section.html @@ -0,0 +1,26 @@ +{{ define "main" }} +<article> + <h1>{{ .Title }}</h1> + {{ .Content }} +</article> +<div class="h-feed"> + + {{ range .Paginator.Pages }} + <article class="h-entry"> + <h2 class="p-name"><a class="u-url" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> + {{if .Date }} + {{ $dateMachine := .Date | time.Format "2006-01-02 15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format ":date_long" }} + <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> + {{end}} + <div class="p-summary"> + {{ .Summary }} + </div> + <a class="btn-primary" href="{{ .RelPermalink }}">Читать дальше...</a> + </article> + {{ end }} + <article> + {{ partial "pagination.html" . }} + </article> +</div> +{{ end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/taxonomy.html b/themes/neonxp/layouts/taxonomy.html new file mode 100644 index 0000000..ff8e552 --- /dev/null +++ b/themes/neonxp/layouts/taxonomy.html @@ -0,0 +1,11 @@ +{{ define "main" }} +<article> + <h1>{{ .Title }}</h1> + {{ .Content }} +</article> +<article> + {{ range .Pages }} + <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> + {{ end }} +</article> +{{ end }}
\ No newline at end of file diff --git a/themes/neonxp/layouts/term.html b/themes/neonxp/layouts/term.html new file mode 100644 index 0000000..c2e7875 --- /dev/null +++ b/themes/neonxp/layouts/term.html @@ -0,0 +1,7 @@ +{{ define "main" }} + <h1>{{ .Title }}</h1> + {{ .Content }} + {{ range .Pages }} + <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> + {{ end }} +{{ end }} |
