Обновил стиль

This commit is contained in:
Александр Кирюхин 2024-11-20 03:20:47 +03:00
parent 74b65dd83f
commit 8b78390987
Signed by: neonxp
SSH key fingerprint: SHA256:SVt7TjxbVc87m1QYaQziOJ0N3OCFURv2g76gD/UTTXI
15 changed files with 114 additions and 33 deletions

View file

@ -152,20 +152,21 @@ ___
и переходя к сегодняшней заметке я сразу получаю такую заготовку:
![](/img/posts/obsidian/templater.png)
{{< figure src="/img/posts/obsidian/templater.png" title="Заметка из шаблона" >}}
### Остальные плагины
Остальные тоже крутые, но я их приведу просто списком:
- [obsidian-tasks-plugin](https://publish.obsidian.md/tasks/Introduction) — помогает более богато управлять
- [tasks](https://publish.obsidian.md/tasks/Introduction) — помогает более богато управлять
задачами. В частности, у меня проставляет дату завершения задачи, и проставляет даты дедлайна и прочее.
- [obsidian-reminder-plugin](https://uphy.github.io/obsidian-reminder/) — трекает и напоминает про задачи
- [reminder](https://uphy.github.io/obsidian-reminder/) — трекает и напоминает про задачи
- [calendar](https://github.com/liamcain/obsidian-calendar-plugin) — просто миникалендарь в боковой панели
- [homepage](https://github.com/mirnovov/obsidian-homepage) — позволяет задать произвольную заметку "домашней"
- [obsidian-icon-folder](https://github.com/timolins/obsidian-icon-folder) — позволяет задавать директориям и заметкам
- [icon-folder](https://github.com/timolins/obsidian-icon-folder) — позволяет задавать директориям и заметкам
произвольные иконки. Пример есть как раз на скриншоте выше.
- [pomodoro-timer](https://github.com/eatgrass/obsidian-pomodoro-timer) — думаю, из названия и так понятно
- [kanban](https://publish.obsidian.md/kanban/) — шикарнейший канбан плагин
### А что же мне не хватает?
@ -178,7 +179,7 @@ ___
«Но Hugo это же генератор статичных сайтов, куда ты ему будешь отправлять заметку для публикации?» — можешь спросить
меня ты. А я отвечу что у меня вот такой план:
![план-кабан](/img/posts/obsidian/publish.png)
{{< figure src="/img/posts/obsidian/publish.png" title="план-кабан" >}}
То что выделено красным — ещё не существует в природе.

5
go.mod
View file

@ -1,5 +0,0 @@
module git.neonxp.ru/neonxp/blog
go 1.23.2
require github.com/CaiJimmy/hugo-theme-stack/v3 v3.29.0 // indirect

2
go.sum
View file

@ -1,2 +0,0 @@
github.com/CaiJimmy/hugo-theme-stack/v3 v3.29.0 h1:6Ahvbvlyi0HrstfDt2yk6BfcAEnW107lWOUjPjD/ye4=
github.com/CaiJimmy/hugo-theme-stack/v3 v3.29.0/go.mod h1:IPmCXiIxlFSLFYS0tOmYP6ySLviyeNVSabyvSuaxD+I=

View file

@ -100,8 +100,7 @@ tabWidth = 4
[outputs]
page = ["html"]
home = ["html"]
sections = ["html", "rss"]
post = ["html"]
section = ["html", "rss"]
[pagination]
disableAliases = false

View file

@ -1,9 +1,3 @@
.space-between {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.p-summary {
display: none;
}
@ -16,6 +10,10 @@
display: none;
}
figcaption {
text-align: center;
}
@media print {
.sidebar {
display: none;

View file

@ -0,0 +1,17 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-rss"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
<path d="M4 4a16 16 0 0 1 16 16" />
<path d="M4 11a9 9 0 0 1 9 9" />
</svg>

After

Width:  |  Height:  |  Size: 453 B

View file

@ -1 +0,0 @@
console.log('This site was generated by Hugo.');

View file

@ -8,8 +8,11 @@
</div>
<div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
<article>
<header class="p-name">
{{ .Title }}
<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 }}

View file

@ -9,7 +9,12 @@
<div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
{{ if .Title }}
<article>
<header>{{ .Title }}</header>
<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 }}

View file

@ -14,17 +14,20 @@
</div>
<div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
<article>
<header class="space-between">
<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 class="space-between">
<footer>
<div class="row between-sm">
<span>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</span>
@ -34,6 +37,7 @@
{{ if .Params.Location }}
<span class="p-location">@ {{.Params.Location}}</span>
{{ end }}
</div>
</footer>
</article>
{{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}

View file

@ -0,0 +1,6 @@
{{- $iconFile := resources.GetMatch (printf "icons/%s.svg" .) -}}
{{- if $iconFile -}}
{{- $iconFile.Content | safeHTML -}}
{{- else -}}
{{- errorf "Error: icon '%s.svg' is not found under 'assets/icons' folder" . -}}
{{- end -}}

View file

@ -1,11 +1,13 @@
<article>
<header class="space-between">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ if .Date }}
<span>
{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
</span>
{{ end }}
<header>
<div class="row between-sm">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ if .Date }}
<span>
{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
</span>
{{ end }}
</div>
</header>
{{ if .Description }}
{{ .Description }}

View file

@ -0,0 +1,38 @@
<figure{{ with .Get "class" }} class="{{ . }}"{{ end }}>
{{- if .Get "link" -}}
<a href="{{ .Get "link" }}"{{ with .Get "target" }} target="{{ . }}"{{ end }}{{ with .Get "rel" }} rel="{{ . }}"{{ end }}>
{{- end -}}
{{- $u := urls.Parse (.Get "src") -}}
{{- $src := $u.String -}}
{{- if not $u.IsAbs -}}
{{- with or (.Page.Resources.Get $u.Path) (resources.Get $u.Path) -}}
{{- $src = .RelPermalink -}}
{{- end -}}
{{- end -}}
<img src="{{ $src }}"
{{- if or (.Get "alt") (.Get "caption") }}
alt="{{ with .Get "alt" }}{{ . }}{{ else }}{{ .Get "caption" | markdownify| plainify }}{{ end }}"
{{- end -}}
{{- with .Get "width" }} width="{{ . }}"{{ end -}}
{{- with .Get "height" }} height="{{ . }}"{{ end -}}
{{- with .Get "loading" }} loading="{{ . }}"{{ end -}}
><!-- Closing img tag -->
{{- if .Get "link" }}</a>{{ end -}}
{{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}}
<figcaption>
{{ with (.Get "title") -}}
{{ . }}
{{- end -}}
{{- if or (.Get "caption") (.Get "attr") -}}<p>
{{- .Get "caption" | markdownify -}}
{{- with .Get "attrlink" }}
<a href="{{ . }}">
{{- end -}}
{{- .Get "attr" | markdownify -}}
{{- if .Get "attrlink" }}</a>{{ end }}</p>
{{- end }}
</figcaption>
{{- end }}
</figure>

View file

@ -0,0 +1 @@
<script src="https://gist.neonxp.ru/{{ index .Params 0 }}/{{ index .Params 1 }}.js{{if len .Params | eq 3 }}?file={{ index .Params 2 }}{{end}}"></script>

View file

@ -0,0 +1,15 @@
<blockquote>
<p>{{ .Inner | markdownify }}</p>
{{- if or (.Get "author") (.Get "source") -}}
<span class="cite"><span></span>
{{- if .Get "author" -}}
<span>
{{- .Get "author" -}}{{- if .Get "source" -}}, {{ end -}}
</span>
{{- end -}}
{{- with .Get "url" -}}<a href="{{ . }}">{{- end -}}
<cite>{{ .Get "source" }}</cite>
{{- if .Get "url" -}}</a>{{- end -}}
</span>
{{- end -}}
</blockquote>