aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2025-01-02 19:52:06 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2025-01-02 19:52:06 +0300
commit99deed9ef6ab7624d5485ed582de015fae6b578b (patch)
tree461f800fc2d4ba4cdfec4a09b54950106dfd8c09 /layouts
parent876f3e0ae68f46791aeecdaed398dfc91389c3c8 (diff)
Auto-commit 2025-01-02
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/_markup/render-image.txt2
-rw-r--r--layouts/_default/list.txt10
-rw-r--r--layouts/_default/single.txt9
-rw-r--r--layouts/partials/content.txt5
4 files changed, 14 insertions, 12 deletions
diff --git a/layouts/_default/_markup/render-image.txt b/layouts/_default/_markup/render-image.txt
new file mode 100644
index 0000000..e2d496a
--- /dev/null
+++ b/layouts/_default/_markup/render-image.txt
@@ -0,0 +1,2 @@
+Изображение «{{- if .Text -}}{{- .Text -}}{{- else -}}{{- .Title -}}{{- end -}}»:
+{{ .Destination | safeURL }} \ No newline at end of file
diff --git a/layouts/_default/list.txt b/layouts/_default/list.txt
index 0d9cee8..c129a19 100644
--- a/layouts/_default/list.txt
+++ b/layouts/_default/list.txt
@@ -1,9 +1,7 @@
-# {{ .Title }}
-
-{{ $content := .RawContent -}}
-
-{{ $content }}
+{{ .Title }}
+================================================================================
+{{ partial "content.txt" . }}
{{ range .Pages.ByPublishDate.Reverse }}
-=> {{ .RelPermalink | replaceRE `index.txt` `` }}{{if .Date }} {{ .Date.Format "2006-01-02" }}{{ end }} {{ .Title }}
+* {{if .Date }} {{ .Date.Format "2006-01-02" }}{{ end }}{{- .Title }} ({{ .RelPermalink | replaceRE `text/index.txt` `` }})
{{ end }} \ No newline at end of file
diff --git a/layouts/_default/single.txt b/layouts/_default/single.txt
index 51f0239..7a44b8b 100644
--- a/layouts/_default/single.txt
+++ b/layouts/_default/single.txt
@@ -1,8 +1,5 @@
{{ .Title }}
-
-{{ $content := .RawContent -}}
-{{ $content := $content | replaceRE "(?s:< !--more-- >)" "" -}}
-{{ $content }}
-
----
+================================================================================
+{{ partial "content.txt" . }}
+================================================================================
NeonXP at {{ .Date.Format "2006-01-02" }}
diff --git a/layouts/partials/content.txt b/layouts/partials/content.txt
new file mode 100644
index 0000000..26a7901
--- /dev/null
+++ b/layouts/partials/content.txt
@@ -0,0 +1,5 @@
+{{ $content := .RawContent -}}
+{{ $content := $content | replaceRE "(?s:<!--more-->)" "" -}}
+{{ $content := $content | replaceRE `\!\[.*?\]\((.*?)\)` "$1" -}}
+{{ $content := $content | replaceRE `\[(.*?)\]\((.*?)\)` "$1 ($2)" -}}
+{{ $content }} \ No newline at end of file