From 24dca41afa2bca3adc4721715a69f7a0c3946e2b Mon Sep 17 00:00:00 2001 From: FarseaSH Date: Thu, 2 Sep 2021 21:09:09 +0800 Subject: [PATCH] add pictures style --- archetypes/moments.md | 8 ++--- layouts/partials/pic_set.html | 11 ++++-- layouts/partials/row.html | 68 ++++++++++++++++++++++------------- static/css/style.css | 4 +-- 4 files changed, 55 insertions(+), 36 deletions(-) diff --git a/archetypes/moments.md b/archetypes/moments.md index 783c538..100736a 100644 --- a/archetypes/moments.md +++ b/archetypes/moments.md @@ -18,14 +18,10 @@ tags: # 附加信息(选填1项或者不填写) # 附加信息类型1:单个图片 -pic: - -# 附加信息类型2:图片组 -pic_set: +pictures: - - - -# 附加信息类型3:网页链接 +# 附加信息类型2:网页链接 # link:必填,网页链接; # link_text:必填,链接显示的文字; # link_logo:选填,网页logo,现在支持部分网站自动找到对应图标,无需自己添加图标 diff --git a/layouts/partials/pic_set.html b/layouts/partials/pic_set.html index 7318a2b..b4d66aa 100644 --- a/layouts/partials/pic_set.html +++ b/layouts/partials/pic_set.html @@ -1,9 +1,14 @@ -
- +{{ $num_per_row := 3}} +{{ $max_width := 80}} +{{ if or (eq (len .pic_set) 2) (eq (len .pic_set) 4)}} + {{ $num_per_row = 2}} + {{ $max_width = 53}} +{{ end }} +
{{ range $num, $a := .pic_set }} -
+
diff --git a/layouts/partials/row.html b/layouts/partials/row.html index 8c4f88d..752a025 100644 --- a/layouts/partials/row.html +++ b/layouts/partials/row.html @@ -1,7 +1,7 @@
- +
{{ .Date.Format "Jan 2"}}{{ if in (slice 1 21 31) .Date.Day}}st{{ else if in (slice 2 22) @@ -10,17 +10,17 @@
- +
- + {{ if gt .Params.top 0}}
{{ end }} - + -
- +
{{ .Content }}
- - + + + {{ with .Params.pic }} - Responsive image + Responsive image {{ end }} - + {{ $pic_set_filtered := slice}} {{ with .Params.pic_set }} - {{ range . }} - {{ with .}} - {{ $pic_set_filtered = $pic_set_filtered | append . }} - {{ end }} - {{ end }} + {{ range . }} + {{ with . }} + {{ $pic_set_filtered = $pic_set_filtered | append . }} + {{ end }} + {{ end }} {{ end }} {{ with $pic_set_filtered }} {{ partial "pic_set.html" (dict "pic_set" .) }} {{ end }} - - + + {{ $pictures_set:= slice}} + {{ with .Params.pictures }} + {{ range . }} + {{ with . }} + {{ $pictures_set = $pictures_set | append . }} + {{ end }} + {{ end }} + {{ end }} + + {{ if (eq (len $pictures_set) 1) }} + {{ range $pictures_set }} + Responsive image + {{ end }} + {{ end }} + + {{ if (gt (len $pictures_set) 1)}} + {{ partial "pic_set.html" (dict "pic_set" $pictures_set) }} + {{ end }} + + {{ $link_link := .Params.link }} {{ $link_logo := .Params.link_logo }} {{ $link_text := .Params.link_text }} @@ -88,13 +107,12 @@ $.Site.BaseURL)}} {{ end }} - +

{{ .Date.Format "15:04" }} {{ .Params.note }}

-
diff --git a/static/css/style.css b/static/css/style.css index ec23899..4949f2e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -169,8 +169,8 @@ p{ } /* 图片 */ -.pic1{ - max-width: 80%; +.single-pic{ + max-width: 65%; max-height: 250px; padding-bottom:10px; margin-top: 5px;