summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2026-02-10 17:11:24 +0300
committer2026-02-10 20:08:10 +0300
commit2ecb959c5b9c2b0750212af0349fd6d4a5c25258 (patch)
tree16b3268b7dd825a13d4d8c0eb00007cc7f9a8ac1
downloadbase-2ecb959c5b9c2b0750212af0349fd6d4a5c25258.tar.gz
base-2ecb959c5b9c2b0750212af0349fd6d4a5c25258.tar.bz2
base-2ecb959c5b9c2b0750212af0349fd6d4a5c25258.tar.xz
base-2ecb959c5b9c2b0750212af0349fd6d4a5c25258.zip
Первый коммитHEADmaster
Diffstat (limited to '')
-rw-r--r--archetypes/default.md8
-rw-r--r--assets/css/main.css146
-rw-r--r--assets/css/paper.css166
-rw-r--r--go.mod3
-rw-r--r--hugo.yaml18
-rw-r--r--layouts/_default/section.atom.xml23
-rw-r--r--layouts/_default/section.feed.json31
-rw-r--r--layouts/_default/taxonomy.html20
-rw-r--r--layouts/_default/terms.html17
-rw-r--r--layouts/_partials/footer.html1
-rw-r--r--layouts/_partials/head.html12
-rw-r--r--layouts/_partials/head/css.html27
-rw-r--r--layouts/_partials/head/js.html16
-rw-r--r--layouts/_partials/header.html2
-rw-r--r--layouts/_partials/menu.html50
-rw-r--r--layouts/_partials/terms.html29
-rw-r--r--layouts/baseof.html17
-rw-r--r--layouts/home.html16
-rw-r--r--layouts/page.html50
-rw-r--r--layouts/pages/section.html23
-rw-r--r--layouts/projects/section.html23
-rw-r--r--layouts/section.html26
-rw-r--r--layouts/shortcodes/img.html21
-rw-r--r--layouts/taxonomy.html11
-rw-r--r--layouts/term.html7
-rw-r--r--static/favicon.icobin0 -> 8772 bytes
26 files changed, 763 insertions, 0 deletions
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..57e3501
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,8 @@
+---
+title:
+date: "{{ .Date }}"
+tags:
+ -
+categories:
+ - Без категории
+---
diff --git a/assets/css/main.css b/assets/css/main.css
new file mode 100644
index 0000000..9d07479
--- /dev/null
+++ b/assets/css/main.css
@@ -0,0 +1,146 @@
+:root {
+ --border-radius: 4px;
+ --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
+ }
+}
+
+nav {
+ margin-top: 1rem;
+}
+
+nav ul {
+ padding: 0;
+ margin: 0;
+}
+
+nav ul li {
+ list-style: none;
+ display: inline-block;
+ border: 0.1px solid var(--link-color);
+ border-radius: var(--border-radius);
+}
+
+nav ul li a {
+ padding: 0.5rem 1rem;
+ text-decoration: none;
+ display: inline-block;
+ width: auto;
+ line-height: 1.5rem;
+}
+
+nav ul li a:hover {
+ background-color: color-mix(in srgb, var(--link-color) 10%, transparent);
+}
+
+nav ul li a.active {
+ background-color: color-mix(in srgb, var(--link-color) 10%, transparent);
+}
+
+ul.taxonomy {
+ display: block;
+ padding: 0;
+ margin: 0.5rem 0;
+}
+
+ul.taxonomy li {
+ list-style: none;
+ display: inline;
+}
+
+ul.taxonomy li::after {
+ content: " | ";
+}
+
+ul.taxonomy li:last-child::after {
+ content: "";
+}
+
+ul.terms {
+ display: block;
+ padding: 0;
+ margin: 0.5rem 0;
+}
+
+ul.terms li {
+ list-style: none;
+ display: inline;
+}
+
+ul.terms li::after {
+ content: " | ";
+}
+
+ul.terms li:last-child::after {
+ content: "";
+}
+
+ul.pagination {
+ display: block;
+ padding: 0;
+ margin: 0.5rem 0;
+}
+
+ul.pagination li {
+ display: inline;
+ list-style: none;
+}
+
+ul.pagination li.active a {
+ background-color: color-mix(in srgb, var(--link-color) 10%, transparent);
+}
+
+ul.pagination li a {
+ padding: 0.5rem 1rem;
+ border: 0.1px solid var(--link-color);
+ border-radius: var(--border-radius);
+ text-decoration: none;
+ line-height: 3rem;
+}
+
+ul.pagination li a:hover {
+ background-color: color-mix(in srgb, var(--link-color) 10%, transparent);
+}
+
+ul.pagination li:first-child a {
+ margin-left: 0;
+}
+
+pre {
+ border-radius: var(--border-radius);
+ border: 0.1px solid var(--border);
+ padding: 0.5rem;
+}
+
+article {
+ border-radius: var(--border-radius);
+ box-shadow: var(--shadow);
+}
+
+img {
+ border-radius: var(--border-radius);
+}
+
+.menu-icon {
+ height: 24px;
+ width: 24px;
+ border-radius: 0;
+ margin-bottom: -0.5rem;
+}
+
+a.btn-primary {
+ display: inline-block;
+ padding: 0.5rem 1rem;
+ margin: 1rem 0;
+ border: 0.1px solid var(--link-color);
+ border-radius: var(--border-radius);
+ text-decoration: none;
+}
+
+a.btn-primary:hover {
+ background-color: color-mix(in srgb, var(--link-color) 10%, transparent);
+} \ No newline at end of file
diff --git a/assets/css/paper.css b/assets/css/paper.css
new file mode 100644
index 0000000..eb6b982
--- /dev/null
+++ b/assets/css/paper.css
@@ -0,0 +1,166 @@
+html,
+body {
+ padding: 0px;
+ margin: 0px;
+ border: none;
+}
+
+*,
+*::before,
+*::after {
+ box-sizing: border-box;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ margin: 0;
+ /* line-height: 1; */
+}
+
+:root {
+ --bg: #ffffff;
+ --surface: #f8f9fa;
+ --border: #e3e3e3;
+ --text: #2e2e2e;
+ --text-secondary: #6c757d;
+ --link-color: rgb(40, 117, 251);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --bg: #1e1e1e;
+ --surface: #262626;
+ --border: #2a2a2a;
+ --text: #e0e0e0;
+ --text-secondary: #a8a8a8;
+ --shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
+ --link-color: rgb(103, 158, 254);
+ }
+}
+
+@media print {
+
+ *,
+ *:before,
+ *:after,
+ *:first-letter,
+ p:first-line,
+ div:first-line,
+ blockquote:first-line,
+ li:first-line {
+ background: transparent !important;
+ color: #000 !important;
+ box-shadow: none !important;
+ text-shadow: none !important;
+ }
+
+ :root {
+ --main-color: #000;
+ --background-color: #fff;
+ --main-background-color: #fff;
+ }
+
+ main {
+ font-size: 12pt !important;
+ line-height: 1.4 !important;
+ --background-color: #fff !important;
+ }
+
+ header {
+ display: none;
+ }
+
+ footer {
+ display: none;
+ }
+
+ article {
+ page-break-after: always;
+ border: 0 !important;
+ padding: 0 !important;
+ }
+
+ a[href] {
+ color: #000;
+ }
+}
+
+html {
+ background-color: var(--surface);
+ display: flex;
+ justify-content: center;
+ flex-direction: row;
+}
+
+body {
+ color: var(--text);
+ font-family: Arial,
+ Helvetica,
+ sans-serif;
+ line-height: 1.5;
+ width: 100%;
+ max-width: 1200px;
+}
+
+a {
+ color: var(--link-color);
+}
+
+header,
+footer {
+ padding: 0 2rem;
+}
+
+main {
+ padding: 0 2rem;
+}
+
+article {
+ background-color: var(--bg);
+ padding: 1.5em 2em;
+ margin: 1em 0;
+ border: 0.1px solid var(--border);
+}
+
+
+
+p {
+ orphans: 3;
+ widows: 4;
+}
+
+figure {
+ max-width: 800px;
+}
+
+
+img {
+ max-width: 100%;
+}
+
+@media (max-width: 900px) {
+ main {
+ font-size: 15px;
+ line-height: 1.5;
+ padding: 0 2em;
+ }
+}
+
+@media (max-width: 480px) {
+ main {
+ font-size: 14px;
+ line-height: 1.4;
+ padding: 0 1em;
+ }
+}
+
+
+pre,
+code {
+ max-width: 100%;
+ overflow-x: scroll;
+} \ No newline at end of file
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..ccf3fc8
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module go.neonxp.ru/hugo/base
+
+go 1.25.7
diff --git a/hugo.yaml b/hugo.yaml
new file mode 100644
index 0000000..4177323
--- /dev/null
+++ b/hugo.yaml
@@ -0,0 +1,18 @@
+baseURL: https://example.org/
+languageCode: en-US
+title: My New Hugo Site
+menus:
+ main:
+ - name: Home
+ pageRef: /
+ weight: 10
+ - name: Posts
+ pageRef: /posts
+ weight: 20
+ - name: Tags
+ pageRef: /tags
+ weight: 30
+module:
+ hugoVersion:
+ extended: false
+ min: 0.146.0
diff --git a/layouts/_default/section.atom.xml b/layouts/_default/section.atom.xml
new file mode 100644
index 0000000..9ddb7d2
--- /dev/null
+++ b/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/layouts/_default/section.feed.json b/layouts/_default/section.feed.json
new file mode 100644
index 0000000..d7d70d0
--- /dev/null
+++ b/layouts/_default/section.feed.json
@@ -0,0 +1,31 @@
+{
+ "version": "https://jsonfeed.org/version/1",
+ "title": {{ .Site.Title | jsonify }},
+ "home_page_url": {{ .Permalink | jsonify }},
+ {{ with .OutputFormats.Get "json" -}}
+ "feed_url": {{ .Permalink | jsonify }},
+ {{- end }}
+ {{- if .Site.Params.author -}}
+ "author": {
+ "name": {{ .Site.Params.author | jsonify }}
+ },
+ {{ end -}}
+ {{- if .Data.Pages -}}
+ "items": [
+ {{ range $index, $element := first 10 .Data.Pages -}}
+ {{ if $index }},{{end}} {
+ "title": {{ $element.Title | jsonify }},
+ "id": {{ $element.Permalink | jsonify }},
+ "url": {{ $element.Permalink | jsonify }},
+ "summary": {{ $element.Summary | jsonify }},
+ {{- if eq $element.Type "link" -}}
+ "external_url": {{ $element.Params.link | jsonify }},
+ {{- end -}}
+ "content_html": {{ $element.Content | jsonify }},
+ "content_text": {{ $element.Plain | jsonify }},
+ "date_published": {{ $element.Date.Format "2006-02-01T15:04:05-0700" | jsonify }}
+ }
+ {{- end }}
+ ]
+ {{ end -}}
+} \ No newline at end of file
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..ac5fc7d
--- /dev/null
+++ b/layouts/_default/taxonomy.html
@@ -0,0 +1,20 @@
+{{ define "main" }}
+<article>
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+</article>
+{{ range .Data.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 }}
+{{ end }} \ No newline at end of file
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
new file mode 100644
index 0000000..49d993f
--- /dev/null
+++ b/layouts/_default/terms.html
@@ -0,0 +1,17 @@
+{{ define "main" }}
+<article>
+ <h1>{{ i18n .Title }}</h1>
+ {{ .Content }}
+</article>
+<article>
+ <ul class="terms">
+ {{ range $key, $value := .Data.Terms }}
+ {{ $postCount := len $value.Pages -}}
+
+ <li><a href="
+ /{{ $.Data.Plural | urlize }}/{{ $key | urlize }}">{{ $key
+ }}</a>&nbsp;({{$postCount}})</li>
+ {{ end }}
+ </ul>
+</article>
+{{ end }} \ No newline at end of file
diff --git a/layouts/_partials/footer.html b/layouts/_partials/footer.html
new file mode 100644
index 0000000..2c30eaa
--- /dev/null
+++ b/layouts/_partials/footer.html
@@ -0,0 +1 @@
+<p>&copy; 2007 — {{ now.Year }} Александр NeonXP Кирюхин. <a href="mailto:i@neonxp.ru">i@neonxp.ru</a></p> \ No newline at end of file
diff --git a/layouts/_partials/head.html b/layouts/_partials/head.html
new file mode 100644
index 0000000..7826e2a
--- /dev/null
+++ b/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/layouts/_partials/head/css.html b/layouts/_partials/head/css.html
new file mode 100644
index 0000000..9324758
--- /dev/null
+++ b/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/layouts/_partials/head/js.html b/layouts/_partials/head/js.html
new file mode 100644
index 0000000..1b7c18e
--- /dev/null
+++ b/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/layouts/_partials/header.html b/layouts/_partials/header.html
new file mode 100644
index 0000000..7980a00
--- /dev/null
+++ b/layouts/_partials/header.html
@@ -0,0 +1,2 @@
+<h1>{{ site.Title }}</h1>
+{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/layouts/_partials/menu.html b/layouts/_partials/menu.html
new file mode 100644
index 0000000..ebad53f
--- /dev/null
+++ b/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/layouts/_partials/terms.html b/layouts/_partials/terms.html
new file mode 100644
index 0000000..b666922
--- /dev/null
+++ b/layouts/_partials/terms.html
@@ -0,0 +1,29 @@
+{{- $page := .page }}
+
+{{- with $page.GetTerms "categories" }}
+{{- if . }}
+{{- $label := (index . 0).Parent.LinkTitle }}
+<div>
+ <h3>{{ i18n $label }}:</h3>
+ <ul class="taxonomy">
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+</div>
+{{- end }}
+{{- end }}
+
+{{- with $page.GetTerms "tags" }}
+{{- if . }}
+{{- $label := (index . 0).Parent.LinkTitle }}
+<div>
+ <h3>{{ i18n $label }}:</h3>
+ <ul class="taxonomy">
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+</div>
+{{- end }}
+{{- end }} \ No newline at end of file
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..39dcbec
--- /dev/null
+++ b/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/layouts/home.html b/layouts/home.html
new file mode 100644
index 0000000..c643012
--- /dev/null
+++ b/layouts/home.html
@@ -0,0 +1,16 @@
+{{ 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>
+ <div class="p-summary">
+ {{ .Summary }}
+ </div>
+ </article>
+ {{ end }}
+</div>
+{{ end }} \ No newline at end of file
diff --git a/layouts/page.html b/layouts/page.html
new file mode 100644
index 0000000..c28ab39
--- /dev/null
+++ b/layouts/page.html
@@ -0,0 +1,50 @@
+{{ define "main" }}
+<article class="h-entry">
+ <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}}
+ <div class="e-content">
+ {{ .Content }}
+ </div>
+</article>
+<article>
+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+</article>
+{{if .Param "comments"}}
+<h2>Комментарии</h2>
+{{ range $key, $comment := where .Site.Data.comments "subject" "eq" .Page.Permalink }}
+<article>
+ <b>{{$comment.from_name}}:</b>
+ <p>
+ {{if $comment.date }}
+ {{ $dateMachine := $comment.date | time.Format "2006-01-02T15:04:05-07:00" }}
+ {{ $dateHuman := $comment.date | time.Format ":date_long" }}
+ <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+ {{end}}
+ </p>
+ <p>{{$comment.body | safeHTML}}</p>
+ {{if $comment.body_signature}}
+ <details>
+ <summary>Подпись</summary>
+ <pre>{{$comment.body_signature| safeHTML}}</pre>
+ </details>
+ {{end}}
+</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}}
+{{ end }} \ No newline at end of file
diff --git a/layouts/pages/section.html b/layouts/pages/section.html
new file mode 100644
index 0000000..cc60509
--- /dev/null
+++ b/layouts/pages/section.html
@@ -0,0 +1,23 @@
+{{ 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>
+ <a class="btn-primary" href="{{ .RelPermalink }}">Читать дальше...</a>
+ </article>
+ {{ end }}
+</div>
+{{ end }} \ No newline at end of file
diff --git a/layouts/projects/section.html b/layouts/projects/section.html
new file mode 100644
index 0000000..cc60509
--- /dev/null
+++ b/layouts/projects/section.html
@@ -0,0 +1,23 @@
+{{ 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>
+ <a class="btn-primary" href="{{ .RelPermalink }}">Читать дальше...</a>
+ </article>
+ {{ end }}
+</div>
+{{ end }} \ No newline at end of file
diff --git a/layouts/section.html b/layouts/section.html
new file mode 100644
index 0000000..5d3a4ba
--- /dev/null
+++ b/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>
+ {{ template "_internal/pagination.html" . }}
+ </article>
+</div>
+{{ end }} \ No newline at end of file
diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html
new file mode 100644
index 0000000..994e30f
--- /dev/null
+++ b/layouts/shortcodes/img.html
@@ -0,0 +1,21 @@
+{{- $alt := .Get "alt" -}}
+{{- $res := .Page.Resources.Get (.Get "src") -}}
+
+{{- $ws := slice 480 800 -}}
+{{- $srcset := slice -}}
+{{- range $ws -}}
+{{- if (le . $res.Width) -}}
+{{- $w := printf "%dx" . -}}
+{{- $url := ($res.Resize $w).RelPermalink | safeURL -}}
+{{- $fmt := printf "%s %dw" $url . -}}
+{{- $srcset = $srcset | append $fmt -}}
+{{- end -}}
+{{- end -}}
+
+{{- $set := delimit $srcset "," -}}
+
+<figure>
+ <img srcset="{{ $set }}" sizes="(max-width: 480px) 480px, 100vw" src="{{ $res.RelPermalink }}" alt="{{ $alt }}"
+ height="auto" />
+ <figcaption>{{ $alt }}</figcaption>
+</figure> \ No newline at end of file
diff --git a/layouts/taxonomy.html b/layouts/taxonomy.html
new file mode 100644
index 0000000..ff8e552
--- /dev/null
+++ b/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/layouts/term.html b/layouts/term.html
new file mode 100644
index 0000000..c2e7875
--- /dev/null
+++ b/layouts/term.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ {{ range .Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ end }}
+{{ end }}
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..da16cb8
--- /dev/null
+++ b/static/favicon.ico
Binary files differ