commit d4097e8b0edca061930ca608f4b5860276fc526c Author: FarseaSH Date: Thu Aug 5 13:38:08 2021 +0800 initial commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7e4eda2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2021 FarseaSH + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/archetypes/moments.md b/archetypes/moments.md new file mode 100644 index 0000000..5a6a922 --- /dev/null +++ b/archetypes/moments.md @@ -0,0 +1,39 @@ +--- +# 名称 +name: +avatar: + +# 发布时间 +date: {{ .Date }} + +# 给Moment添加标签 +tags: + - + - + +# 附加信息类型1:单个图片 +pic: + +# 附加信息类型2:图片组 +pic_set: + - + - + +# 附加信息类型3:链接 +link: +link_logo: +link_text: + +# 备注信息 +note: +--- + + + + +==================== +微信: wechat.svg +b站:bilibili.png +知乎:zhihu.svg +==================== + diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..ac41f1a --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,28 @@ + + + + {{ partial "head.html" . }} + + +
+ {{ partial "header.html" . }} + + {{ block "main" . }} + {{ end }} + + + + + {{ partial "footer.html" . }} +
+ + {{ partial "after-content-js.html" . }} + + + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..07e2292 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,39 @@ +{{ define "main" }} +
+ {{ range .Paginator.Pages }} + {{ partial "row.html" . }} + {{ end }} +
+{{ end }} + + +{{ define "pagination" }} + {{ if .Paginator.HasPrev }} +
  • + Previous +
  • + {{ else }} +
  • + Previous +
  • + {{ end }} + + {{ $current_num := .Paginator.PageNumber }} + {{ range (seq 1 .Paginator.TotalPages) }} + {{ if (eq $current_num .)}} +
  • {{.}}
  • + {{ else }} +
  • {{.}}
  • + {{ end }} + {{end}} + + {{ if .Paginator.HasNext }} +
  • + Next +
  • + {{ else }} +
  • + Next +
  • + {{ end }} +{{ end }} \ No newline at end of file diff --git a/layouts/partials/after-content-js.html b/layouts/partials/after-content-js.html new file mode 100644 index 0000000..46ea518 --- /dev/null +++ b/layouts/partials/after-content-js.html @@ -0,0 +1,12 @@ + + \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..46578fe --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..2ea2ee3 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{{ .Site.Params.title }} \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..01b186d --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,7 @@ +
    +
    +

    {{ .Site.Params.title }}

    +

    {{ .Site.Params.signature }}

    +
    +
    \ No newline at end of file diff --git a/layouts/partials/link-block.html b/layouts/partials/link-block.html new file mode 100644 index 0000000..b83d238 --- /dev/null +++ b/layouts/partials/link-block.html @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/layouts/partials/pic_set.html b/layouts/partials/pic_set.html new file mode 100644 index 0000000..d5f4623 --- /dev/null +++ b/layouts/partials/pic_set.html @@ -0,0 +1,33 @@ + + \ No newline at end of file diff --git a/layouts/partials/row.html b/layouts/partials/row.html new file mode 100644 index 0000000..13999ca --- /dev/null +++ b/layouts/partials/row.html @@ -0,0 +1,84 @@ +
    + +
    +

    {{ .Date.Format "Jan 2"}}{{ if in (slice 1 21 31) .Date.Day}}st{{ else if in (slice 2 22) .Date.Day}}nd{{ else if in (slice 3 23) .Date.Day}}rd{{ else }}th{{ end }}

    +

    {{ .Date.Format "2006"}}

    +
    + + +
    + + +
    + {{ with .Params.avatar }} + + {{ else }} + + {{ end }} +
    + {{ with .Params.name }} +

    {{ . }}

    + {{ else }} +

    {{ .Site.Params.name }}

    + {{ end }} +
    + {{ $tags_filtered := slice}} + {{ with .Params.tags }} + {{ range . }} + {{ with .}} + {{ $tags_filtered = $tags_filtered | append . }} + {{ end }} + {{ end }} + {{ end }} + {{ with $tags_filtered }} + {{ range . }}{{ . }}{{ end }} + {{ end }} +
    +
    +
    + +
    + +
    + {{ .Content }} +
    + + + {{ with .Params.pic }} + Responsive image + {{ end }} + + + {{ $pic_set_filtered := slice}} + {{ with .Params.pic_set }} + {{ range . }} + {{ with .}} + {{ $pic_set_filtered = $pic_set_filtered | append . }} + {{ end }} + {{ end }} + {{ end }} + + {{ with $pic_set_filtered }} + {{ partial "pic_set.html" (dict "pic_set" .) }} + {{ end }} + + {{ $link_link := .Params.link }} + {{ $link_logo := .Params.link_logo }} + {{ $link_text := .Params.link_text }} + + {{ with .Params.link }} + {{ partial "link-block.html" (dict "logo" $link_logo "a" $link_link "word" $link_text)}} + {{ end }} + + +
    +

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

    + +
    +
    + +
    +
    +
    \ No newline at end of file diff --git a/layouts/shortcodes/link.html b/layouts/shortcodes/link.html new file mode 100644 index 0000000..1223781 --- /dev/null +++ b/layouts/shortcodes/link.html @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..2321276 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,135 @@ +/* 主框架 */ +body{ + background-color: #f5f5f5; +} +.page{ + max-width: 1150px; + margin: auto; + background-color: white; +} + +@media (min-width:1150px) { + .page{ + margin-top: 50px; + } +} + +.bodycontainer{ + max-width: 760px; + /* padding-right: 80px; */ +} + +/* 时间 */ +.time{ + text-align: right; + padding-right: 60px; + /* white-space: nowrap; */ +} +@media (max-width: 576px){ + .time{ + text-align: center; + padding-right: 15px; + } +} +@media (max-width: 720px) and (min-width:576px){ + .time{ + padding-right: 20px; + } +} + +/* 抬头 */ +.avatar{ + max-height: 45px; + float: left; + margin-bottom: 10px; +} + +.intro{ + float: left; + padding-left: 5px; +} + +.name{ + color:#186D9C!important; + margin-bottom: 0; + line-height: 1.1; +} + +.tag::before{ + content:"#" +} +.tag{ + font-size: 80%; + margin-left: 0px; + margin-right: 10px; +} + +/* 正文 */ +.context{ + clear: left; + margin-bottom: 10px; +} + +/* 图片 */ +.pic1{ + max-width: 80%; + max-height: 250px; + padding-bottom:10px; + margin-top: 5px; +} +/* 图片集 */ +#carouselExampleIndicators{ + width: 80%; + padding-bottom:10px; + margin-top: 5px; +} + +.pic-in-set{ + height: 250px; +} + +/* 内容附带的超链接 */ +.share-link-block{ + padding-bottom:10px; + padding-top:10px; + margin-bottom:10px; + background: #f7f7f7; +} +.link-table{ + margin-left: 10%; + max-width: 80%; +} +.link-logo{ + max-width: 50px; + max-height: 50px; +} +.share-link-block a{ + color:#17a2b8; + word-wrap: break-word; +} + +/* 附注信息 */ +.note{ + font-size: 80%; + text-indent: 20px; + float: left; + margin-bottom: 10px; +} + +/* footer底注 */ +.footer { + background-color: #f5f5f5; + text-align: center; + font-size: 95%; +} +.footcontainer { + width: auto; + padding-right: 15px; + padding-left: 15px; +} + +.footcontainer a{ + text-decoration: underline !important; + color:#6c757d !important; +} + diff --git a/static/favicon/android-icon-144x144.png b/static/favicon/android-icon-144x144.png new file mode 100644 index 0000000..cfb1603 Binary files /dev/null and b/static/favicon/android-icon-144x144.png differ diff --git a/static/favicon/android-icon-192x192.png b/static/favicon/android-icon-192x192.png new file mode 100644 index 0000000..821d77c Binary files /dev/null and b/static/favicon/android-icon-192x192.png differ diff --git a/static/favicon/android-icon-36x36.png b/static/favicon/android-icon-36x36.png new file mode 100644 index 0000000..b1ef163 Binary files /dev/null and b/static/favicon/android-icon-36x36.png differ diff --git a/static/favicon/android-icon-48x48.png b/static/favicon/android-icon-48x48.png new file mode 100644 index 0000000..aeb0383 Binary files /dev/null and b/static/favicon/android-icon-48x48.png differ diff --git a/static/favicon/android-icon-72x72.png b/static/favicon/android-icon-72x72.png new file mode 100644 index 0000000..f867e3e Binary files /dev/null and b/static/favicon/android-icon-72x72.png differ diff --git a/static/favicon/android-icon-96x96.png b/static/favicon/android-icon-96x96.png new file mode 100644 index 0000000..ca8e6f1 Binary files /dev/null and b/static/favicon/android-icon-96x96.png differ diff --git a/static/favicon/apple-icon-114x114.png b/static/favicon/apple-icon-114x114.png new file mode 100644 index 0000000..1debfd3 Binary files /dev/null and b/static/favicon/apple-icon-114x114.png differ diff --git a/static/favicon/apple-icon-120x120.png b/static/favicon/apple-icon-120x120.png new file mode 100644 index 0000000..c039d4c Binary files /dev/null and b/static/favicon/apple-icon-120x120.png differ diff --git a/static/favicon/apple-icon-144x144.png b/static/favicon/apple-icon-144x144.png new file mode 100644 index 0000000..cfb1603 Binary files /dev/null and b/static/favicon/apple-icon-144x144.png differ diff --git a/static/favicon/apple-icon-152x152.png b/static/favicon/apple-icon-152x152.png new file mode 100644 index 0000000..3a96bc9 Binary files /dev/null and b/static/favicon/apple-icon-152x152.png differ diff --git a/static/favicon/apple-icon-180x180.png b/static/favicon/apple-icon-180x180.png new file mode 100644 index 0000000..9baeab1 Binary files /dev/null and b/static/favicon/apple-icon-180x180.png differ diff --git a/static/favicon/apple-icon-57x57.png b/static/favicon/apple-icon-57x57.png new file mode 100644 index 0000000..38795f2 Binary files /dev/null and b/static/favicon/apple-icon-57x57.png differ diff --git a/static/favicon/apple-icon-60x60.png b/static/favicon/apple-icon-60x60.png new file mode 100644 index 0000000..84dbc1e Binary files /dev/null and b/static/favicon/apple-icon-60x60.png differ diff --git a/static/favicon/apple-icon-72x72.png b/static/favicon/apple-icon-72x72.png new file mode 100644 index 0000000..f867e3e Binary files /dev/null and b/static/favicon/apple-icon-72x72.png differ diff --git a/static/favicon/apple-icon-76x76.png b/static/favicon/apple-icon-76x76.png new file mode 100644 index 0000000..d3745e9 Binary files /dev/null and b/static/favicon/apple-icon-76x76.png differ diff --git a/static/favicon/apple-icon-precomposed.png b/static/favicon/apple-icon-precomposed.png new file mode 100644 index 0000000..c6c0d2d Binary files /dev/null and b/static/favicon/apple-icon-precomposed.png differ diff --git a/static/favicon/apple-icon.png b/static/favicon/apple-icon.png new file mode 100644 index 0000000..c6c0d2d Binary files /dev/null and b/static/favicon/apple-icon.png differ diff --git a/static/favicon/browserconfig.xml b/static/favicon/browserconfig.xml new file mode 100644 index 0000000..c554148 --- /dev/null +++ b/static/favicon/browserconfig.xml @@ -0,0 +1,2 @@ + +#ffffff \ No newline at end of file diff --git a/static/favicon/favicon-16x16.png b/static/favicon/favicon-16x16.png new file mode 100644 index 0000000..f4b70d0 Binary files /dev/null and b/static/favicon/favicon-16x16.png differ diff --git a/static/favicon/favicon-32x32.png b/static/favicon/favicon-32x32.png new file mode 100644 index 0000000..572cad1 Binary files /dev/null and b/static/favicon/favicon-32x32.png differ diff --git a/static/favicon/favicon-96x96.png b/static/favicon/favicon-96x96.png new file mode 100644 index 0000000..ca8e6f1 Binary files /dev/null and b/static/favicon/favicon-96x96.png differ diff --git a/static/favicon/favicon.ico b/static/favicon/favicon.ico new file mode 100644 index 0000000..f8a97ca Binary files /dev/null and b/static/favicon/favicon.ico differ diff --git a/static/favicon/manifest.json b/static/favicon/manifest.json new file mode 100644 index 0000000..013d4a6 --- /dev/null +++ b/static/favicon/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +} \ No newline at end of file diff --git a/static/favicon/ms-icon-144x144.png b/static/favicon/ms-icon-144x144.png new file mode 100644 index 0000000..cfb1603 Binary files /dev/null and b/static/favicon/ms-icon-144x144.png differ diff --git a/static/favicon/ms-icon-150x150.png b/static/favicon/ms-icon-150x150.png new file mode 100644 index 0000000..b8bc4f7 Binary files /dev/null and b/static/favicon/ms-icon-150x150.png differ diff --git a/static/favicon/ms-icon-310x310.png b/static/favicon/ms-icon-310x310.png new file mode 100644 index 0000000..17ecd26 Binary files /dev/null and b/static/favicon/ms-icon-310x310.png differ diff --git a/static/favicon/ms-icon-70x70.png b/static/favicon/ms-icon-70x70.png new file mode 100644 index 0000000..fcdb043 Binary files /dev/null and b/static/favicon/ms-icon-70x70.png differ diff --git a/static/img/default_avatar.png b/static/img/default_avatar.png new file mode 100644 index 0000000..4eb3e8c Binary files /dev/null and b/static/img/default_avatar.png differ diff --git a/static/link-logos/default_link_logo.png b/static/link-logos/default_link_logo.png new file mode 100644 index 0000000..ced2772 Binary files /dev/null and b/static/link-logos/default_link_logo.png differ diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..6be5d9d --- /dev/null +++ b/theme.toml @@ -0,0 +1,21 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "Moments" +license = "MIT" +licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" +description = "" +homepage = "http://example.com/" +tags = [] +features = [] +min_version = "0.41" + +[author] + name = "" + homepage = "" + +# If porting an existing theme +[original] + name = "" + homepage = "" + repo = ""