From f1b32bd47ee1401e9441d532551b20570c36e206 Mon Sep 17 00:00:00 2001 From: Mivinci Date: Tue, 8 Nov 2022 18:07:48 +0800 Subject: [PATCH] i know it is a lot --- assets/css/atom.scss | 84 ++++++++++ assets/css/main.scss | 58 +++++++ assets/{sass/markdown.scss => css/md.scss} | 41 +++-- assets/css/pre.scss | 134 +++++++++++++++ assets/{sass => css}/syntax.scss | 4 +- assets/css/theme.scss | 13 ++ assets/js/friends.js | 4 +- assets/js/style.js | 4 +- assets/sass/atom.scss | 186 --------------------- assets/sass/main.scss | 148 ---------------- assets/sass/toc.scss | 89 ---------- data/svg.toml | 2 +- exampleSite/config.toml | 29 ++-- exampleSite/content/chinese.md | 17 -- exampleSite/content/instruction.md | 3 + exampleSite/content/markdown-syntax.md | 1 - layouts/_default/baseof.html | 2 +- layouts/_default/list.html | 22 +-- layouts/_default/single.html | 15 +- layouts/_default/terms.html | 4 +- layouts/index.html | 16 +- layouts/partials/disqus.html | 2 +- layouts/partials/footer.html | 36 ++-- layouts/partials/head.html | 4 +- layouts/partials/header.html | 12 +- layouts/partials/item.html | 17 ++ layouts/partials/list.html | 10 -- layouts/partials/ovo.html | 2 +- layouts/partials/toc.html | 26 --- 29 files changed, 415 insertions(+), 570 deletions(-) create mode 100644 assets/css/atom.scss create mode 100644 assets/css/main.scss rename assets/{sass/markdown.scss => css/md.scss} (61%) create mode 100644 assets/css/pre.scss rename assets/{sass => css}/syntax.scss (99%) create mode 100644 assets/css/theme.scss delete mode 100644 assets/sass/atom.scss delete mode 100644 assets/sass/main.scss delete mode 100644 assets/sass/toc.scss delete mode 100644 exampleSite/content/chinese.md create mode 100644 layouts/partials/item.html delete mode 100644 layouts/partials/list.html delete mode 100644 layouts/partials/toc.html diff --git a/assets/css/atom.scss b/assets/css/atom.scss new file mode 100644 index 0000000..f875d77 --- /dev/null +++ b/assets/css/atom.scss @@ -0,0 +1,84 @@ +/* layout */ +.container { + max-width: var(--max-w); +} + +.overflow-x-auto { + overflow-x: auto; +} + +.overflow-y-hidden { + overflow-y: hidden; +} + +/* flex & grid */ +.flex { + display: flex; +} + +.flex-row { + flex-direction: row; +} + +.flex-column { + flex-direction: column; +} + +.justify-between { + justify-content: space-between; +} + +.items-center { + align-items: center; +} + +.items-start { + align-items: flex-start; +} + +.items-baseline { + align-items: baseline; +} + +/* spacing */ +$u: 0.25; +@each $i, $class in (p, padding), (m, margin) { + @each $j, $size in (t, top), (r, right), (b, bottom), (l, left) { + @each $k in 0,1,2,3,4,5,6,7,8 { + .#{$i}#{$j}-#{$k} { + #{$class}-#{$size}: #{$u * $k}rem; + } + } + } +} + +.mx-auto { + margin-left: auto; + margin-right: auto; +} + +/* typography */ +$weights: (thin, 100), (extralight, 200), (light, 300), (normal, 400), + (medium, 500), (semibold, 600), (bold, 700), (extrabold, 800); +@each $k, $v in $weights { + .font-#{$k} { + font-weight: #{$v}; + } +} + +$texts: (xs, 0.75), (sm, 0.875), (base, 1), (lg, 1.125), (xl, 1.25), + (2xl, 1.5), (3xl, 1.875), (4xl, 2.25), (5xl, 3), (6xl, 3.75); +@each $k, $s in $texts { + .text-#{$k} { + font-size: #{$s}rem; + } +} + +.whitespace-nowrap { + white-space: nowrap; +} + +/* interactivity */ +.cursor-pointer { + cursor: pointer; +} \ No newline at end of file diff --git a/assets/css/main.scss b/assets/css/main.scss new file mode 100644 index 0000000..5b17375 --- /dev/null +++ b/assets/css/main.scss @@ -0,0 +1,58 @@ +@import "./pre.scss"; +@import "./theme.scss"; +@import "./atom.scss"; +@import "./md.scss"; +@import "./syntax.scss"; + +:root { + --max-w: 640px; + --nav-s: 1.5rem; + --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +@media screen and (min-width: 480px) { + :root { + --nav-s: .5rem; + } +} + + +html { + font-size: 16px; + -webkit-text-size-adjust: 100%; + -ms-overflow-style: -ms-autohiding-scrollbar; + box-sizing: border-box; + border-collapse: collapse; +} + +body { + margin: 0 16px; + font-family: var(--font); + font-weight: 400; + background-color: var(--back); + color: var(--text); + transition-property: background-color, border-color, color; + transition-duration: 0.5s; +} + +main { + animation: showup 0.7s; +} + +main p a { + color: var(--prime); +} + +@keyframes showup { + from { + opacity: 0; + transform: translateY(20px); + } + + to { + opacity: 1; + transform: none; + } +} \ No newline at end of file diff --git a/assets/sass/markdown.scss b/assets/css/md.scss similarity index 61% rename from assets/sass/markdown.scss rename to assets/css/md.scss index d3ccc73..12a98ab 100644 --- a/assets/sass/markdown.scss +++ b/assets/css/md.scss @@ -1,6 +1,22 @@ +$heading: (h1, 2.25, 800), (h2, 2, 700), (h3, 1.75, 600), (h4, 1.5, 600), + (h5, 1.25, 500), (h6, 1, 400); +@each $tag, $size, $weight in $heading { + .md #{$tag} { + font-size: #{$size}rem; + font-weight: $weight; + margin-top: 1rem; + margin-bottom: .75rem; + } +} + +.md pre { + font-size: 13px; + line-height: 1.3; +} + .md blockquote { - background-color: rgba(148, 148, 149, 0.08) ; - padding: 1px 1rem; + background-color: #94949514; + padding: 1px .85em; border-left: 4px solid var(--prime); font-style: italic; } @@ -24,9 +40,9 @@ border-bottom: 2px solid var(--text); } -.md table th, +.md table th, .md table td { - padding: 10px 20px; + padding: .25rem 1rem; } .md img { @@ -37,13 +53,19 @@ overflow: auto hidden; } +.md ul { + list-style: disc; + padding-inline-start: 22px; +} + .md ul input[type="checkbox"] { + margin: 0; margin-right: 3px; } .md .ul-checkbox { list-style: none; - padding-inline-start: 20px; + padding-inline-start: 2px; } .md li { @@ -60,9 +82,9 @@ } .md blockquote p { - margin: .5rem 0; + margin: .45rem 0; line-height: 1.5; - font-size: .9rem; + font-size: .95rem; } .md hr { @@ -77,8 +99,3 @@ .md p sup { margin-left: 4px; } - -.md a { - font-style: italic; - text-decoration: underline; -} \ No newline at end of file diff --git a/assets/css/pre.scss b/assets/css/pre.scss new file mode 100644 index 0000000..7d5cd81 --- /dev/null +++ b/assets/css/pre.scss @@ -0,0 +1,134 @@ +/* This file is taken from https://github.com/tailwindlabs/tailwindcss/blob/master/src/css/preflight.css */ + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +*/ +html { + --default-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + line-height: 1.5; + font-family: var(--font, --default-font); + font-feature-settings: normal; +} + + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ +body { + margin: 0; + line-height: inherit; +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* +Remove the default font size and weight for headings. +*/ +p, +pre, +figure, +dl, +dd, +blockquote, +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-size: inherit; + font-weight: inherit; +} + +.tag, +p code { + font-size: .8em; + padding: 0.1em 0.3em; + border-radius: 1px; + background-color: #9999993b; +} + + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ +a { + color: inherit; + text-decoration: inherit; +} + +a:hover { + color: var(--prime, inherit); +} + +/* +1. Use the user's configured `mono` font family by default. +2. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + --default-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-family: var(--font-mono, --default-font-mono); +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ +button, +select { + text-transform: none; +} + +::-webkit-scrollbar { + width: 4px; + height: 4px; +} + +::-webkit-scrollbar-thumb { + background: rgba(128, 128, 128, 0.7); +} +::-webkit-scrollbar-thumb:window-inactive { + background: rgba(128, 128, 128, 0.2); +} + +::-webkit-scrollbar-thumb:active { + background-color: rgb(128, 128, 128); +} diff --git a/assets/sass/syntax.scss b/assets/css/syntax.scss similarity index 99% rename from assets/sass/syntax.scss rename to assets/css/syntax.scss index 086182d..e3cf5b2 100644 --- a/assets/sass/syntax.scss +++ b/assets/css/syntax.scss @@ -100,6 +100,7 @@ .chroma .cpf { color: #ce9178; } + /* LiteralNumber */ .chroma .m, .chroma .mb, @@ -138,5 +139,4 @@ .chroma .hl { display: block; background-color: #585858; -} - +} \ No newline at end of file diff --git a/assets/css/theme.scss b/assets/css/theme.scss new file mode 100644 index 0000000..35080da --- /dev/null +++ b/assets/css/theme.scss @@ -0,0 +1,13 @@ +.light { + --prime: #1691b6; + --grid: #e1e1e1; + --back: #fff; + --text: #222; +} + +.dark { + --prime: #1691b6; + --back: #181818; + --text: silver; + --grid: #555; +} \ No newline at end of file diff --git a/assets/js/friends.js b/assets/js/friends.js index 8564d74..6807d7e 100644 --- a/assets/js/friends.js +++ b/assets/js/friends.js @@ -31,7 +31,7 @@ function rss(xml) { // innsert dom const div = document.createElement('div') - div.className = 'flex justify-between sm:flex-col-reverse my-4 sm:mb-6 sm:mt-3' + div.className = 'flex justify-between' div.innerHTML = template(link, title, date) dom.appendChild(div) @@ -52,6 +52,6 @@ function template() { const a = arguments return ` ${a[1]} -
${format(a[2])}
+
${format(a[2])}
`.trim() } \ No newline at end of file diff --git a/assets/js/style.js b/assets/js/style.js index 911b2fb..6cc6b90 100644 --- a/assets/js/style.js +++ b/assets/js/style.js @@ -5,5 +5,5 @@ document.querySelectorAll('.md ul').forEach(v => { } }); -// use custom font family -document.querySelector('body').style.setProperty('--global-font-family', '{{ .Site.Params.globalFontFamily }}'); \ No newline at end of file +// // use custom font family +// document.querySelector('body').style.setProperty('--global-font-family', '{{ .Site.Params.globalFontFamily }}'); \ No newline at end of file diff --git a/assets/sass/atom.scss b/assets/sass/atom.scss deleted file mode 100644 index f296533..0000000 --- a/assets/sass/atom.scss +++ /dev/null @@ -1,186 +0,0 @@ -* { - line-height: 1; - -webkit-tap-highlight-color: rgba(0,0,0,0); - outline: none; -} - -header nav a { - line-height: 1.8; -} - -$unit: 0.25rem; -$scales: 0, 1, 2, 3, 4, 5, 6, 7, 8, 1.5; -$screens: ( - sm\:: 640px, -); - -@mixin scale_with_prefix($prefix, $scale) { - $size: $scale * $unit; - .#{$prefix}mt-#{$scale} { - margin-top: $size; - } - .#{$prefix}mb-#{$scale} { - margin-bottom: $size; - } - .#{$prefix}ml-#{$scale} { - margin-left: $size; - } - .#{$prefix}mr-#{$scale} { - margin-right: $size; - } - .#{$prefix}my-#{$scale} { - margin-top: $size; - margin-bottom: $size; - } - .#{$prefix}mx-#{$scale} { - margin-left: $size; - margin-right: $size; - } - - .#{$prefix}pb-#{$scale} { - padding-bottom: $size; - } - .#{$prefix}py-#{$scale} { - padding-top: $size; - padding-bottom: $size; - } -} - -@each $scale in $scales { - @include scale_with_prefix("", $scale); - - @each $screen, $size in $screens { - @media (max-width: $size) { - @include scale_with_prefix($screen, $scale); - } - } -} - -@mixin style_with_prefix($prefix) { - .#{$prefix}block { - display: block; - } - .#{$prefix}flex { - display: flex; - } - .#{$prefix}flex-row { - flex-direction: row; - } - .#{$prefix}flex-col { - flex-direction: column; - } - .#{$prefix}flex-col-reverse { - flex-direction: column-reverse; - } - .#{$prefix}justify-between { - justify-content: space-between; - } - .#{$prefix}flex-nowrap { - flex-wrap: nowrap; - } - .#{$prefix}items-center { - align-items: center; - } - .#{$prefix}self-start { - align-self: flex-start; - } - .#{$prefix}hidden { - display: none; - } - .#{$prefix}text-xs { - font-size: .8rem; - } - .#{$prefix}text-sm { - font-size: .9rem; - } - .#{$prefix}text-md { - font-size: 1.25rem; - } - .#{$prefix}text-xl { - font-size: 1.5rem; - } - .#{$prefix}text-2xl { - font-size: 1.75rem; - } - .#{$prefix}text-3xl { - font-size: 2rem; - } - .#{$prefix}text-4xl { - font-size: 2.25rem; - } -} - -@each $screen, $size in $screens { - @media (max-width: $size) { - @include style_with_prefix($screen); - } -} - -@include style_with_prefix(""); - - -// border width -.bw-0 { - border-width: 0; -} - -// width -.min-w-32 { - min-width: 0.25 * 32rem; -} - -.whitespace-nowrap { - white-space: nowrap; -} - -.overflow-x-auto { - overflow-x: auto; -} - -.overflow-y-hidden { - overflow-y: hidden; -} - -.cursor-pointer { - cursor: pointer; -} - -.not-first\:ml-3 { - &:not(:first-child) { - margin-left: 0.75rem; - } -} - - -/* font weight */ -.font-thin { - font-weight: 100; -} - -.font-extralight { - font-weight: 200; -} - -.font-light { - font-weight: 300; -} - -.font-normal { - font-weight: 400; -} - -.font-medium { - font-weight: 500; -} - -.font-semibold { - font-weight: 600; -} - -.font-bold { - font-weight: 700; -} - -.text-left { - text-align: left; -} \ No newline at end of file diff --git a/assets/sass/main.scss b/assets/sass/main.scss deleted file mode 100644 index 1b866bc..0000000 --- a/assets/sass/main.scss +++ /dev/null @@ -1,148 +0,0 @@ -@import "atom.scss"; -@import "markdown.scss"; -@import "syntax.scss"; -@import "toc.scss"; - -:root { - --prime: #0fa0ce; - --grid: #e1e1e1; - --back: #fff; - --text: #222; - --tag: #333; - - --mobile-w: 640px; - - --global-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; -} - -html.dark { - --back: #181818; - --text: silver; - --grid: #555; - --tag: #999; - - --ovo-ft: var(--text); - --ovo-bdr: var(--grid); - --ovo-bg: var(--back); - --ovo-bg-hvr: #555; - --ovo-tag: #30363d; -} - -body { - font-family: var(--global-font-family); - font-size: 16px; - font-weight: 400; - color: var(--text); - background-color: var(--back); - transition-property: background-color, border-color, color; - transition-duration: 0.5s; -} - -h1, -h2, -h3, -h4, -h5 { - line-height: 1.5; -} - -p { - line-height: 1.6; - text-align: justify; -} - -hr { - border-width: 0; - border-top: 1px solid var(--grid); -} - -a { - line-height: 1.5; - text-decoration: none; - color: inherit; -} - -a:hover { - color: var(--prime); -} - -main { - animation: showup 0.7s; -} - -p a { - // font-style: italic; - text-decoration: underline; -} - -footer a { - font-style: unset; - text-decoration: none; -} - -header nav { - color: var(--tag); -} - -header ul { - padding: 0; - list-style: none; -} - -pre, -code { - overflow: auto hidden; - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 13px; - line-height: 1.3; -} - -.minima-tag, -p code { - background-color: var(--grid); - padding: 0.2em 0.4em; - border-radius: 1px; -} - -::-webkit-scrollbar { - width: 4px; - height: 4px; -} - -::-webkit-scrollbar-thumb { - background: rgba(128, 128, 128, 0.7); -} -::-webkit-scrollbar-thumb:window-inactive { - background: rgba(128, 128, 128, 0.2); -} - -::-webkit-scrollbar-thumb:active { - background-color: rgb(128, 128, 128); -} - -h1::-webkit-scrollbar, -nav::-webkit-scrollbar { - display: none; - width: 0; -} - -@keyframes showup { - from { - opacity: 0; - transform: translateY(20px); - } - - to { - opacity: 1; - transform: none; - } -} - -.home-intro { - line-height: 1.65; -} - -.container { - max-width: var(--mobile-w); - margin: 0 auto; -} \ No newline at end of file diff --git a/assets/sass/toc.scss b/assets/sass/toc.scss deleted file mode 100644 index 342e847..0000000 --- a/assets/sass/toc.scss +++ /dev/null @@ -1,89 +0,0 @@ -details.toc { - position: sticky; - top: 0; - background-color: var(--back); - transition: .5s all; -} - -details.toc summary { - position: relative; - width: fit-content; - cursor: pointer; - background-color: var(--back); - transition: .5s all; -} - -details.toc div { - background-color: var(--back); - transition: .5s all; -} - -details.toc ul { - list-style-type: none; - padding-inline-start: 1em; - margin: 0; -} - -details.toc ul > li { - margin: 1em 0; -} - -details.toc-bar, -details.toc-lines { - & summary { - padding-right: 0.5em; - list-style: none; - } - & summary::-webkit-details-marker { - display: none; - } - & div { - padding-top: 1em; - } -} - -details.toc-bar { - top: 1rem; - background-color: transparent; - - & div { - top: -1em; - padding-top: 2em; - background-color: var(--back); - } - - & summary { - --toc-bar-ht: 4px; - --toc-bar-wd: 8%; - width: var(--toc-bar-wd); - height: var(--toc-bar-ht); - margin-left: calc(50% - var(--toc-bar-wd) / 2); - border-radius: calc(var(--toc-bar-ht) / 2); - background-color: var(--text); - box-shadow: var(--back) 0 0 8px 8px; - } -} - -details.toc-default, -details.toc-lines { - & summary { - padding-top: 1em; - } -} - -details.toc-lines { - & summary::before { - content: "≡"; - font-size: 1.5em; - position: relative; - top: 0; - } -} - -details[open] { - &.toc-lines summary::before { - content: "×"; - font-size: 1.7em; - top: -4px; - } -} diff --git a/data/svg.toml b/data/svg.toml index ffd81bd..ad37317 100644 --- a/data/svg.toml +++ b/data/svg.toml @@ -1,5 +1,5 @@ github = 'GitHub' linkedin = 'LinkedIn' twitter = 'Twitter' +email = '' rss = '' -toc = '' \ No newline at end of file diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 5470638..867b06f 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -6,7 +6,7 @@ googleAnalytics = "" # paginate decides the number of the newest posts # that'll be shown on the home page. -paginate = 6 +paginate = 12 # theme is the name of the hugo theme you're gonna use, # `hugo-theme-minima` is put here only for debuging, @@ -16,8 +16,8 @@ theme = "hugo-theme-minima" # Author has some of your information to be shown on the home page. [author] name = "Mivinci" -slogon = "A tech lover from Earth 🌍" -description = "This is Minima, a clean and minimal Hugo theme porting from the [Hexo Minima](https://github.com/adisaktijrs/hexo-theme-minima). Except for everything from Hexo Minima like dark/light mode, Hugo Minima supports KaTeX, Mermaid, comments and some taxonomies like categories, series and tags. I created this using SASS, VanillaJS and the most importantly, Hugo. 😁" +slogon = "Living on Earth 🌍" +description = "This is Minima, a clean and minimal Hugo theme porting from [Hexo Minima](https://github.com/adisaktijrs/hexo-theme-minima). It has supported multiple color themes, math formulas, flowcharts, syntax highlighting, and of course taxonomies like categories, tags, and series." [params] @@ -37,16 +37,13 @@ switch = ["🌚", "🌝"] defaultTheme = "system" # If set true, date of posts will be shown in the homepage. displayDate = true +# +displayDescription = true # If set true, users can select text from your post. selectable = true -# Custom global font. notice: `globalFontFamily` won't be working -# on texts in some special positions like on titles -globalFontFamily = "" # If set true, all your posts will use the chosen comment plugin # except those with a `comment: false` specified in their front-matter commentOnAllPosts = true -# toc decides the shape of the toc button. e.g. default, lines, bar -toc = "lines" recent = "Recent Posts" older = "Older Posts" @@ -85,18 +82,18 @@ placeholder = "" # in that file, each line must be formatted as `name = ''` # where `` is the svg code. [[params.social]] -name = "github" -url = "https://github.com/mivinci/hugo-theme-minima" -svg = "" -[[params.social]] -name = "linkedin" -url = "https://linkedin/in/leonard-mivinci-63895317a" -svg = "" -[[params.social]] name = "twitter" url = "https://twitter.com/realmivinci" svg = "" [[params.social]] +name = "email" +url = "mailto:mivinci@qq.com" +svg = "" +[[params.social]] +name = "github" +url = "https://github.com/mivinci/hugo-theme-minima" +svg = "" +[[params.social]] name = "rss" url = "/index.xml" svg = "" diff --git a/exampleSite/content/chinese.md b/exampleSite/content/chinese.md deleted file mode 100644 index b18b6bd..0000000 --- a/exampleSite/content/chinese.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -author: XJJ -title: 中文测试 -date: 2021-07-16T10:52:59+08:00 -description: -comment: false ---- - -## 二级标题 - -这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文 - -### 三级标题 - -这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文这是测试正文 - -#### 四级标题 \ No newline at end of file diff --git a/exampleSite/content/instruction.md b/exampleSite/content/instruction.md index 495d752..fda6fb0 100644 --- a/exampleSite/content/instruction.md +++ b/exampleSite/content/instruction.md @@ -3,6 +3,9 @@ author: Mivinci title: Instruction date: 2021-07-19T10:52:59+08:00 description: A Clean and minimal Hugo theme porting from the [Hexo Minima](https://github.com/adisaktijrs/hexo-theme-minima). [Click me](https://h.xjj.pub/) to take a look. +tags: + - Hugo + - Minima math: true comment: true --- diff --git a/exampleSite/content/markdown-syntax.md b/exampleSite/content/markdown-syntax.md index 08e41f5..fb52e3c 100644 --- a/exampleSite/content/markdown-syntax.md +++ b/exampleSite/content/markdown-syntax.md @@ -3,7 +3,6 @@ author: "Hugo Authors" title: "Markdown Syntax Guide" date: "2021-07-18T10:52:59+08:00" description: "Sample article showcasing basic Markdown syntax and formatting for HTML elements." -toc: true categories: ["Markdown"] --- diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 97fb99d..8edd62d 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -2,7 +2,7 @@ {{ partial "head.html" . }} - + {{ partial "header.html" . }} {{ block "main" . }} {{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 530fea9..4a4b6f4 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,14 +1,14 @@ {{ define "main" }} -
- {{ if isset .Data "Term" }} -

{{ .Data.Singular | title }} - "{{ .Data.Term }}"

- {{ else }} -

{{ .Title }}

- {{ end }} -
- {{ range .Data.Pages }} - {{ partial "list.html" . }} - {{ end }} -
+
+ {{ if isset .Data "Term" }} +

{{ .Data.Singular | title }} - "{{ .Data.Term }}"

+ {{ else }} +

{{ .Title }}

+ {{ end }} +
+ {{ range .Data.Pages }} + {{ partial "item.html" . }} + {{ end }} +
{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html index f16bcb0..6c5e5dc 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,24 +1,21 @@ {{ define "main" }} -
- {{ if .Params.toc }} - {{ partial "toc.html" . }} - {{ end }} -

{{ .Title }}

-
+
+

{{ .Title }}

+
{{ if .Site.Params.displayDate }} Posted at — {{ dateFormat .Site.Params.timeformat .Date }} {{ end }} {{ if .Draft }} - + DRAFT {{ end }}
{{ if .Params.tags }} -
+
{{ range .Params.tags }} - #{{ . }} + #{{ . }} {{ end }}
{{ end }} diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html index 45df283..1e0b200 100644 --- a/layouts/_default/terms.html +++ b/layouts/_default/terms.html @@ -1,6 +1,6 @@ {{ define "main" }} -
-

{{ .Title }}

+
+

{{ .Title }}