diff --git a/themes/hugo-blog-jeffprod/layouts/_default/single.html b/themes/hugo-blog-jeffprod/layouts/_default/single.html index b7d12d00766b378c0d0791efed4942ed6171b7e6..5b0cb055029d41cefe164d32307f1a9985f5fefa 100644 --- a/themes/hugo-blog-jeffprod/layouts/_default/single.html +++ b/themes/hugo-blog-jeffprod/layouts/_default/single.html @@ -26,4 +26,5 @@ + {{ end }} diff --git a/themes/hugo-blog-jeffprod/layouts/archives/list.html b/themes/hugo-blog-jeffprod/layouts/archives/list.html index d90a6cff2f7824fb46bc931c1aa2d21691c9fefe..5e1db02710ee8319c469da0176fa57fc0d107b30 100644 --- a/themes/hugo-blog-jeffprod/layouts/archives/list.html +++ b/themes/hugo-blog-jeffprod/layouts/archives/list.html @@ -20,7 +20,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

diff --git a/themes/hugo-blog-jeffprod/layouts/index.html b/themes/hugo-blog-jeffprod/layouts/index.html index d769fe4e7584582e585b1f91fd2d2734d6a283ee..7265df96d664de25876afb5a1949910850317071 100644 --- a/themes/hugo-blog-jeffprod/layouts/index.html +++ b/themes/hugo-blog-jeffprod/layouts/index.html @@ -18,7 +18,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

@@ -49,5 +51,8 @@ +
+ +
{{ end }} diff --git a/themes/hugo-blog-jeffprod/layouts/partials/comments.html b/themes/hugo-blog-jeffprod/layouts/partials/comments.html index be2580e46f3ed09543756ac7748f3be5d68b5fca..7084f9fef433ee2bd85ec1602565bb3e3d9775fe 100644 --- a/themes/hugo-blog-jeffprod/layouts/partials/comments.html +++ b/themes/hugo-blog-jeffprod/layouts/partials/comments.html @@ -3,8 +3,6 @@
- - + + {{ partial "detail-banner.html" . }} \ No newline at end of file diff --git a/themes/hugo-blog-jeffprod/layouts/partials/widget-recent.html b/themes/hugo-blog-jeffprod/layouts/partials/widget-recent.html index d54de3664ced8e5fd7aff87b1dda06f3264e3456..ff80fe90f6ce259088046f2ecad5f959fd2138bd 100644 --- a/themes/hugo-blog-jeffprod/layouts/partials/widget-recent.html +++ b/themes/hugo-blog-jeffprod/layouts/partials/widget-recent.html @@ -7,7 +7,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + + {{ end }} diff --git a/themes/hugo-blog-jeffprod/layouts/post/list.html b/themes/hugo-blog-jeffprod/layouts/post/list.html index f3254af9a9f762877a2f9fb8d7d6390d69c23868..3178e965ddce8d082766df4895e25a9f3b25d94d 100644 --- a/themes/hugo-blog-jeffprod/layouts/post/list.html +++ b/themes/hugo-blog-jeffprod/layouts/post/list.html @@ -20,7 +20,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

diff --git a/themes/hugo-blog-jeffprod/layouts/tags/list.html b/themes/hugo-blog-jeffprod/layouts/tags/list.html index 505d95481021cf3e41554572abf3b9a42741be4e..d6c291b52d84ded563143fe35dc0de00fb8d07df 100644 --- a/themes/hugo-blog-jeffprod/layouts/tags/list.html +++ b/themes/hugo-blog-jeffprod/layouts/tags/list.html @@ -20,7 +20,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

diff --git a/themes/hugo-blog-jeffprod/layouts/taxonomy/archive.html b/themes/hugo-blog-jeffprod/layouts/taxonomy/archive.html index d90a6cff2f7824fb46bc931c1aa2d21691c9fefe..5e1db02710ee8319c469da0176fa57fc0d107b30 100644 --- a/themes/hugo-blog-jeffprod/layouts/taxonomy/archive.html +++ b/themes/hugo-blog-jeffprod/layouts/taxonomy/archive.html @@ -20,7 +20,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

diff --git a/themes/hugo-blog-jeffprod/layouts/taxonomy/tag.html b/themes/hugo-blog-jeffprod/layouts/taxonomy/tag.html index 58308c545cacf6821c1823f52fab76ae368c4fa8..432d424e86b54ec5e6e7218bac05edf58ca5bf6d 100644 --- a/themes/hugo-blog-jeffprod/layouts/taxonomy/tag.html +++ b/themes/hugo-blog-jeffprod/layouts/taxonomy/tag.html @@ -21,7 +21,9 @@ {{ partial "svgs/ico_date.svg" }} {{ .Date.Format "2006-01-02" }} {{ partial "svgs/ico_read.svg" }} - {{ .Params.times }} + + +

{{ .Params.summary }}...

diff --git a/themes/hugo-blog-jeffprod/static/css/blog.css b/themes/hugo-blog-jeffprod/static/css/blog.css index 78f92e5a2111eb52c7206d1eff006af13edff7b7..843429d6e7e7926788969da7621a0cf55ac393df 100644 --- a/themes/hugo-blog-jeffprod/static/css/blog.css +++ b/themes/hugo-blog-jeffprod/static/css/blog.css @@ -250,6 +250,9 @@ html,body { .post-comment { margin-top: 0.6rem; } +.leancloud-visitors-count { + font-weight: 500; +} /* -------------------------guidance------------------------ */ .guidance pre { diff --git a/themes/hugo-blog-jeffprod/static/css/custom.css b/themes/hugo-blog-jeffprod/static/css/custom.css index cfba78b1bfb7324f372dd4a8a9f442102ad54d33..808d1462c3037c76bc23ce7c2034bcaec66ee05b 100644 --- a/themes/hugo-blog-jeffprod/static/css/custom.css +++ b/themes/hugo-blog-jeffprod/static/css/custom.css @@ -159,4 +159,8 @@ div#comments.comments.v{ display:none !important; } +.v .vcards .vcard .vh .vmeta .vat { + color: #467fbf; +} + /**/ \ No newline at end of file