commit 4980296e2214f7dd7b89a57a12cf170d3708b545 Author: wuyoli Date: Sat Feb 12 20:10:27 2022 +0000 starting work diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e68ab27 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +; http://editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fbf78f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +public/ +.idea +.DS_Store +./**/.DS_Store diff --git a/README.md b/README.md new file mode 100644 index 0000000..dfe54a5 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# My Blog + +This is my blog. It is made with [Zola](https://www.getzola.org/themes/anatole-zola/) and hosted on [wuyoli.tilde.team](https://wuyoli.tilde.team). +The theme I'm using is a heavily modified version of the [Anatole Theme](https://github.com/longfangsong/anatole-zola) with the [Nord color theme](https://www.nordtheme.com/). + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..14d0202 --- /dev/null +++ b/config.toml @@ -0,0 +1,29 @@ +title = "Wuyoli" +description = "My Blog" +base_url = "https://wuyoli.tilde.team" +compile_sass = true +highlight_code = true +build_search_index = false +generate_feed = true +highlight_theme = "nord" + +default_language = "en" + +taxonomies = [ + {name = "tags"}, +] + +[extra.social] +github = "" +twitter = "w" +facebook = "" +instagram = "r" +dribbble = "t" +weibo = "y" +linkedin = "" +flickr = "" + +[extra.show] +tags = true +links = true + diff --git a/content/._index.md.swp b/content/._index.md.swp new file mode 100644 index 0000000..e8678d2 Binary files /dev/null and b/content/._index.md.swp differ diff --git a/content/.post-1.md.swp b/content/.post-1.md.swp new file mode 100644 index 0000000..ee2bb25 Binary files /dev/null and b/content/.post-1.md.swp differ diff --git a/content/.post-8.md.swp b/content/.post-8.md.swp new file mode 100644 index 0000000..00d76ec Binary files /dev/null and b/content/.post-8.md.swp differ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..604b485 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ ++++ +title = "index" +template = "index.html" +transparent = true +sort_by = "date" +paginate_by = 10 ++++ + diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..52f671f --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,7 @@ ++++ +title = "About" +template = "about.html" +paginate_by = 0 ++++ + +About this site \ No newline at end of file diff --git a/content/archive/_index.md b/content/archive/_index.md new file mode 100644 index 0000000..5bc9a67 --- /dev/null +++ b/content/archive/_index.md @@ -0,0 +1,4 @@ ++++ +title = "archive" +template = "archive.html" ++++ diff --git a/content/links/_index.md b/content/links/_index.md new file mode 100644 index 0000000..27aa6a5 --- /dev/null +++ b/content/links/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Links" +template = "links.html" +paginate_by = 0 ++++ + +Extern links: +- [Origin theme demo](http://anatole.cai-cai.me) diff --git a/content/post-1.md b/content/post-1.md new file mode 100644 index 0000000..e20b572 --- /dev/null +++ b/content/post-1.md @@ -0,0 +1,139 @@ ++++ +title = "Basic Markdown syntax" +template = "page.html" +date = 2020-01-02T15:00:00Z +[taxonomies] +tags = ["markdown", "demo"] +[extra] +summary = "Shows how basic Markdown syntax are rendered" +mathjax = "tex-mml" ++++ + + + +## Headings + +The following HTML `

`—`

` elements represent six levels of section headings. `

` is the highest section level while `

` is the lowest. + +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 + +## Paragraph + +Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. + +Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. + +## Blockquotes + +The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. + +#### Blockquote without attribution + +> Tiam, ad mint andaepu dandae nostion secatur sequo quae. +> **Note** that you can use *Markdown syntax* within a blockquote. + +#### Blockquote with attribution + +> Don't communicate by sharing memory, share memory by communicating.

+> — Rob Pike[^1] + +[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. + +## Tables + +Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box. + + Name | Age +--------|------ + Bob | 27 + Alice | 23 + +#### Inline Markdown within tables + +| Inline    | Markdown    | In    | Table | +| ---------- | --------- | ----------------- | ---------- | +| *italics* | **bold** | ~~strikethrough~~    | `code` | + +## Code Blocks + +#### Code block with backticks + +```html + + + + + Example HTML5 Document + + +

Test

+ + +``` +#### Code block indented with four spaces + + + + + + Example HTML5 Document + + +

Test

+ + + +## List Types + +#### Ordered List + +1. First item +2. Second item +3. Third item + +#### Unordered List + +* List item +* Another item +* And another item + +#### Nested list + +* Item + 1. First Sub-item + 2. Second Sub-item +* Item + - A + - B + +## Other Elements — abbr, sub, sup, kbd, mark + +GIF is a bitmap image format. + +H2O + +Xn + Yn = Zn + +Press CTRL+ALT+Delete to end the session. + +Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. + +## mathjax + +$$ +\displaylines{x = a + b \\\\ y = b + c} +$$ + +$$ +\require{bussproofs} +\begin{prooftree} +\AxiomC{A} +\AxiomC{B} +\BinaryInfC{D} +\end{prooftree} +$$ \ No newline at end of file diff --git a/content/post-10.md b/content/post-10.md new file mode 100644 index 0000000..893bad0 --- /dev/null +++ b/content/post-10.md @@ -0,0 +1,7 @@ ++++ +title = "Post 6" +template = "page.html" +date = 2020-01-01T03:00:00Z ++++ + +## Post 6 \ No newline at end of file diff --git a/content/post-11.md b/content/post-11.md new file mode 100644 index 0000000..82c0739 --- /dev/null +++ b/content/post-11.md @@ -0,0 +1,7 @@ ++++ +title = "Post 6" +template = "page.html" +date = 2020-01-01T02:00:00Z ++++ + +## Post 6 \ No newline at end of file diff --git a/content/post-2.md b/content/post-2.md new file mode 100644 index 0000000..c59ebee --- /dev/null +++ b/content/post-2.md @@ -0,0 +1,18 @@ ++++ +title = "Short codes demo" +template = "page.html" +date = 2020-01-01T15:00:00Z +[taxonomies] +tags = ["demo"] +[extra] +summary = "A demo of using short codes" ++++ + +## Youtube (zola built in) +{{ youtube(id="IwPRu5FhfIQ", autoplay=true) }} + +## Asciinema +{{ asciinema(id="pegRHrTsb4pRhkuBJE29kMMQ5") }} + +## Bilibili +{{ bilibili(id="BV1tZ4y137qK") }} \ No newline at end of file diff --git a/content/post-3.md b/content/post-3.md new file mode 100644 index 0000000..29b71b2 --- /dev/null +++ b/content/post-3.md @@ -0,0 +1,7 @@ ++++ +title = "Post 3" +template = "page.html" +date = 2020-01-01T10:00:00Z ++++ + +## Post 3 \ No newline at end of file diff --git a/content/post-4.md b/content/post-4.md new file mode 100644 index 0000000..0bd43e6 --- /dev/null +++ b/content/post-4.md @@ -0,0 +1,7 @@ ++++ +title = "Post 4" +template = "page.html" +date = 2020-01-01T09:00:00Z ++++ + +## Post 4 \ No newline at end of file diff --git a/content/post-5.md b/content/post-5.md new file mode 100644 index 0000000..a5e612a --- /dev/null +++ b/content/post-5.md @@ -0,0 +1,7 @@ ++++ +title = "Post 5" +template = "page.html" +date = 2020-01-01T08:00:00Z ++++ + +## Post 5 \ No newline at end of file diff --git a/content/post-6.md b/content/post-6.md new file mode 100644 index 0000000..58b8ecb --- /dev/null +++ b/content/post-6.md @@ -0,0 +1,7 @@ ++++ +title = "Post 6" +template = "page.html" +date = 2020-01-01T07:00:00Z ++++ + +## Post 6 \ No newline at end of file diff --git a/content/post-7.md b/content/post-7.md new file mode 100644 index 0000000..b89999a --- /dev/null +++ b/content/post-7.md @@ -0,0 +1,7 @@ ++++ +title = "Post 7" +template = "page.html" +date = 2020-01-01T06:00:00Z ++++ + +## Post 7 \ No newline at end of file diff --git a/content/post-8.md b/content/post-8.md new file mode 100644 index 0000000..e7156e3 --- /dev/null +++ b/content/post-8.md @@ -0,0 +1,7 @@ ++++ +title = "Post 8" +template = "page.html" +date = 2020-01-01T05:00:00Z ++++ + +## Post 8 \ No newline at end of file diff --git a/content/post-9.md b/content/post-9.md new file mode 100644 index 0000000..4ce25a9 --- /dev/null +++ b/content/post-9.md @@ -0,0 +1,7 @@ ++++ +title = "Post 6" +template = "page.html" +date = 2020-01-01T04:00:00Z ++++ + +## Post 6 \ No newline at end of file diff --git a/sass/.style.scss.swp b/sass/.style.scss.swp new file mode 100644 index 0000000..93c905a Binary files /dev/null and b/sass/.style.scss.swp differ diff --git a/sass/style.scss b/sass/style.scss new file mode 100644 index 0000000..3db261c --- /dev/null +++ b/sass/style.scss @@ -0,0 +1,863 @@ +html { + background-color: #2E3440; + -webkit-font-smoothing: antialiased; +} + +body { + color: #81A1C1; + font-family: 'PingHei', 'PingFang SC', Helvetica Neue, 'Work Sans', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif; + font-size: 15px; + width: 100%; + margin: 0 auto 30px auto; + background-color: #434C5E; + line-height: 1.6em; +} + +p { + line-height: 1.9em; + font-weight: 400; + font-size: 14px; +} + +a { + text-decoration: none; +} + +a:link, a:visited { + opacity: 1; + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + -o-transition: all .15s linear; + -ms-transition: all .15s linear; + transition: all .15s linear; + color: #88C0D0; +} + +a:hover, a:active { + color: #8FBCBB; +} + +img { + max-width: 100%; + height: auto; +} + +/*basic styles ends*/ + + +/*animation starts*/ +.animated { + -webkit-animation-fill-mode: both; + -moz-animation-fill-mode: both; + -ms-animation-fill-mode: both; + -o-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-duration: 1s; + -moz-animation-duration: 1s; + -ms-animation-duration: 1s; + -o-animation-duration: 1s; + animation-duration: 1s; +} + +.animated.hinge { + -webkit-animation-duration: 1s; + -moz-animation-duration: 1s; + -ms-animation-duration: 1s; + -o-animation-duration: 1s; + animation-duration: 1s; +} + +@-webkit-keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-20px); + } + + 100% { + opacity: 1; + -webkit-transform: translateY(0); + } +} + +@-moz-keyframes fadeInDown { + 0% { + opacity: 0; + -moz-transform: translateY(-20px); + } + + 100% { + opacity: 1; + -moz-transform: translateY(0); + } +} + +@-o-keyframes fadeInDown { + 0% { + opacity: 0; + -o-transform: translateY(-20px); + } + + 100% { + opacity: 1; + -o-transform: translateY(0); + } +} + +@keyframes fadeInDown { + 0% { + opacity: 0; + transform: translateY(-20px); + } + + 100% { + opacity: 1; + transform: translateY(0); + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + -moz-animation-name: fadeInDown; + -o-animation-name: fadeInDown; + animation-name: fadeInDown; +} + +/*animation ends*/ + +.content { + height: auto; + float: right; + width: 70%; + margin-top: 60px; +} + +.page-top { + width: 70%; + position: fixed; + right: 0; + z-index: 3; + background-color: #3B4252; + height: 60px; + border-bottom: 1px solid #5E81AC; + + .nav { + list-style: none; + padding: 18px 30px; + float: left; + font-size: 12px; + + li { + position: relative; + display: initial; + padding-right: 20px; + } + + a { + color: #81A1C1; + } + + a:hover { + color: #88C0D0; + } + + a.current { + color: #81A1C1; + padding-bottom: 22px; + border-bottom: 1px solid #5E81AC; + } + } + + .information { + float: right; + padding-top: 12px; + padding-right: 20px; + + .avatar { + float: right; + + img { + width: 32px; + height: 32px; + border-radius: 300px; + } + } + + .back_btn { + float: left; + padding-top: 5px; + margin-right: -10px; + + li { + display: initial; + padding-right: 40px; + } + } + } +} + +#sidebar { + width: 30%; + -webkit-background-size: cover; + background-size: cover; + background-color: #434C5E; + height: 100%; + transition: 0.8s; + top: 0; + left: 0; + position: fixed; + z-index: 4; + border-right: 1px solid #5E81AC; + + .logo-title { + text-align: center; + padding-top: 240px; + + .description { + font-size: 14px; + color: #81A1C1; + } + + .logo { + margin: 0 auto; + } + + .title { + h3 { + text-transform: uppercase; + font-size: 2rem; + font-weight: bold; + letter-spacing: 2px; + line-height: 1; + margin: 0; + } + + a { + text-decoration: none; + color: #88C0D0; + font-size: 2rem; + font-weight: bold; + } + } + + } + + .social-links { + list-style: none; + padding: 0; + font-size: 14px; + text-align: center; + + li { + display: inline; + padding: 0 4px; + line-height: 0; + } + + a { + color: #81A1C1; + } + + a:hover { + color: #88C0D0; + } + } +} + + +.post { + background-color: #2E3440; + margin: 30px; + + .post-title { + h1 { + text-transform: uppercase; + font-size: 30px; + letter-spacing: 5px; + line-height: 1; + } + + h2 { + text-transform: uppercase; + letter-spacing: 1px; + font-size: 28px; + line-height: 1; + font-weight: 600; + color: #81A1C1; + + } + + h3 { + text-transform: uppercase; + letter-spacing: 1px; + line-height: 1; + font-weight: 600; + color: #81A1C1; + font-size: 22px; + margin: 0; + + } + + a { + text-decoration: none; + letter-spacing: 1px; + color: #81A1C1; + + &:hover { + text-decoration: underline; + } + + } + } + + .post-content { + a { + text-decoration: none; + letter-spacing: 1px; + color: #81A1C1; + } + + a:hover { + color: #88C0D0; + } + + h3 { + color: #81A1C1; + font-size: 22px; + font-weight: 600; + } + + h4 { + color: #81A1C1; + font-size: 16px; + } + + & pre code { + padding: 0; + font-family: Inconsolata, monospace, sans-serif; + font-size: inherit; + white-space: inherit; + border: 0; + background: inherit; + color: inherit; + border-radius: 0; + } + + & code { + padding: 1px 3px; + font-family: Inconsolata, monospace, sans-serif; + font-size: 0.85em; + white-space: pre-wrap; + border: 1px solid #E3EDF3; + background: #3B4252; + color: #d14; + border-radius: 2px; + } + + pre { + padding: 4px 6px; + border-radius: 6px; + overflow: scroll; + background-color: #3B4252; + } + + blockquote { + box-sizing: border-box; + margin: 1.6em 0 1.6em -2em; + padding: 0 0 0 1.6em; + border-left: #81A1C1 0.2em solid; + } + + .footnote-definition { + p { + display: inline; + } + } + + iframe { + width: 100%; + height: 500px; + } + } + + .post-footer { + padding: 0 0 30px 0; + border-bottom: 1px solid #81A1C1; + + + .meta { + max-width: 100%; + height: 25px; + color: #5E81AC; + + .info { + float: left; + font-size: 12px; + + .date { + margin-right: 10px; + } + } + + a { + text-decoration: none; + color: #5E81AC; + padding-right: 10px; + + &:hover { + color: #81A1C1; + } + } + + i { + margin-right: 6px; + } + } + + + .tags { + padding-bottom: 15px; + font-size: 13px; + + ul { + list-style-type: none; + display: inline; + margin: 0; + padding: 0; + + li { + list-style-type: none; + margin: 0; + padding-right: 5px; + display: inline; + } + } + + a { + text-decoration: none; + color: rgba(0, 0, 0, 0.44); + font-weight: 400; + + &:hover { + text-decoration: none; + } + } + } + } +} + +.pagination { + margin: 30px; + padding: 0px 0 56px 0; + border-bottom: 1px solid #f2f2f2; + + ul { + list-style: none; + margin: 0; + padding: 0; + height: 13px; + + li { + margin: 0 2px 0 2px; + display: inline; + line-height: 1; + + a { + text-decoration: none; + } + } + } + + .pre { + background-color: #3B4252; + float: left; + } + + .next { + float: right; + } +} + + +.like-reblog-buttons { + float: right; +} + +.like-button { + float: right; + padding: 0 0 0 10px; +} + +.reblog-button { + float: right; + padding: 0; +} + +#install-btn { + position: fixed; + bottom: 0px; + right: 6px +} + +#disqus_thread { + margin: 30px; + border-bottom: 1px solid #f2f2f2; +} + +.footer { + clear: both; + text-align: center; + font-size: 10px; + margin: 0 auto; + bottom: 0; + position: absolute; + width: 100%; + padding-bottom: 20px; + color: #5E81AC; + + a { + color: #5E81AC; + } + + a:hover { + color: #81A1C1; + } +} + + +/*for archive*/ +.archive { + width: 100%; +} + +.list-with-title { + font-size: 14px; + margin: 30px; + padding: 0; + + li { + list-style-type: none; + padding: 0; + } + + .listing-title { + font-size: 24px; + color: #666666; + font-weight: 600; + line-height: 2.2em; + } + + .listing { + padding: 0; + + .listing-post { + padding-bottom: 5px; + + .post-time { + float: right; + color: #C5C5C5; + } + + a { + color: #8F8F8F; + + &:hover { + color: #4786D6; + } + } + + } + } + + .tag-list-item { + margin-bottom: 18px; + .tagcount { + float: right; + color: #fefefe; + min-width: 24px; + margin-right: 18px; + background: gray; + padding-left: 6px; + padding-right: 6px; + border-radius: 1em; + text-align: center; + } + } +} + +/* share */ +.share { + margin: 0px 30px; + display: inline-flex; +} + +.evernote { + width: 32px; + height: 32px; + border-radius: 300px; + background-color: #3E3E3E; + margin-right: 5px; + + a { + color: #fff; + padding: 11px; + font-size: 12px; + } + + a:hover { + color: #ED6243; + padding: 11px; + } +} + +.weibo { + width: 32px; + height: 32px; + border-radius: 300px; + background-color: #ED6243; + margin-right: 5px; + + a { + color: #fff; + padding: 9px; + } + + a:hover { + color: #BD4226; + } +} + +.twitter { + width: 32px; + height: 32px; + border-radius: 300px; + background-color: #59C0FD; + margin-right: 5px; + + a { + color: #fff; + padding: 9px; + } + + a:hover { + color: #4B9ECE; + } +} + +/* about */ +.about { + margin: 30px; + + h3 { + font-size: 22px; + } +} + +/* links*/ +.links { + margin: 30px; + + h3 { + font-size: 22px; + } + + a { + cursor: pointer; + } +} + +/* 评论样式 */ + +.comment-count { + color: #666; +} + +.tab-community { + color: #666; +} + +.read_more { + font-size: 14px; +} + +.back-button { + padding-top: 30px; + max-width: 100px; + padding-left: 40px; + float: left; +} + +#fb_comments_container { + margin: 30px; +} + +a.btn { + color: #868686; + font-weight: 400; +} + +.btn { + display: inline-block; + position: relative; + outline: 0; + color: rgba(0, 0, 0, 0.44); + background: rgba(0, 0, 0, 0); + font-size: 14px; + text-align: center; + text-decoration: none; + cursor: pointer; + border: 1px solid rgba(0, 0, 0, 0.15); + white-space: nowrap; + font-weight: 400; + font-style: normal; + border-radius: 999em; +} + +.btn:hover { + display: inline-block; + position: relative; + outline: 0px; + color: #464545; + background: rgba(0, 0, 0, 0); + font-size: 14px; + text-align: center; + text-decoration: none; + cursor: pointer; + border: 1px solid #464545; + white-space: nowrap; + font-weight: 400; + font-style: normal; + border-radius: 999em; +} + +[role="back"] { + padding: 0.5em 1.25em; + line-height: 1.666em; +} + +[role="home"] { + padding: 0.5em 1.25em; + line-height: 1.666em; +} + +[role="navigation"] { + padding: 0.5em 1.25em; + line-height: 1.666em; +} + +[role="tags"] { + padding: 6px 12px; +} + +.menu { + float: right; + padding-top: 30px; + + .btn-down { + margin: 0; + + li { + list-style: none; + width: 100px; + + a { + display: inline-block; + position: relative; + padding: 0.5em 1.25em; + outline: 0; + color: rgba(0, 0, 0, 0.44); + background: rgba(0, 0, 0, 0); + font-size: 14px; + text-align: center; + text-decoration: none; + cursor: pointer; + border: 1px solid rgba(0, 0, 0, 0.15); + white-space: nowrap; + font-weight: 400; + font-style: normal; + border-radius: 999em; + margin-top: 5px; + + &:hover { + position: relative; + padding: 0.5em 1.25em; + outline: 0; + color: #fff; + background: #3CBD10; + font-size: 14px; + text-align: center; + text-decoration: none; + cursor: pointer; + border: 1px solid rgba(0, 0, 0, 0.15); + white-space: nowrap; + font-weight: 400; + font-style: normal; + border-radius: 999em; + margin-top: 5px; + } + } + + } + } + + .btn-down div { + position: absolute; + visibility: hidden; + width: 100px; + float: right; + } +} + +.page_404 { + text-align: center; + padding-top: 50px; +} + +@media screen and (max-width: 960px) { + #sidebar { + width: 100%; + position: absolute; + border-right: none; + z-index: 1; + + .logo-title { + padding-top: 120px; + + .title { + img { + width: 100px; + } + + h3 { + font-size: 20px; + } + } + } + } + .page-top { + width: 100% + } + .post-title h3 { + line-height: 1.6; + } + .content { + margin-top: 420px; + width: 100%; + z-index: 2; + position: absolute; + } + .footer { + display: none; + } + .share { + display: grid; + } + .social-links { + list-style: none; + font-size: 14px; + text-align: center; + + i { + margin-right: 3px; + } + } +} diff --git a/templates/.basic.html.swp b/templates/.basic.html.swp new file mode 100644 index 0000000..1024c37 Binary files /dev/null and b/templates/.basic.html.swp differ diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..63483ec --- /dev/null +++ b/templates/about.html @@ -0,0 +1,8 @@ +{% extends "basic.html" %} + +{% block content %} +
+

About

+
{{ section.content | safe }}
+
+{% endblock content %} diff --git a/templates/archive.html b/templates/archive.html new file mode 100644 index 0000000..9889d23 --- /dev/null +++ b/templates/archive.html @@ -0,0 +1,24 @@ +{% extends "basic.html" %} + +{% block content %} +
+
    + {% set section_item = get_section(path="_index.md") %} + {% for year, posts in section_item.pages | group_by(attribute="year") %} +
    {{ year }}
    +
      + {% for post in posts %} +
      +
      + {{ post.title }} +
      + {{ post.date }} +
      +
      +
      + {% endfor %} +
    + {% endfor %} +
+
+{% endblock content %} diff --git a/templates/basic.html b/templates/basic.html new file mode 100644 index 0000000..0540452 --- /dev/null +++ b/templates/basic.html @@ -0,0 +1,100 @@ + + + + + + + + + + {% block title %}{{ config.title }}{% endblock title %} + {% if config.generate_feed %} + {% block rss %} + + {% endblock rss %} + {% endif %} + + {% block extra_head %} + {% endblock extra_head %} + + + +
+
+ +
+
+
  • +
    +
    +
    +
    +
    +
    + {% block content %} + {% endblock content %} +
    +
    +
    + + diff --git a/templates/comments.html b/templates/comments.html new file mode 100644 index 0000000..5d2281c --- /dev/null +++ b/templates/comments.html @@ -0,0 +1,42 @@ +{% if config.extra.comment.disqus %} + +
    + + +{% endif %} + +{% if config.extra.comment.valine %} + +
    + + + +{% endif %} + +{% if config.extra.comment.utterances %} + +{% endif %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..b91bc58 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,60 @@ +{% extends "basic.html" %} + +{% block content %} + {% for page in paginator.pages %} +
    +
    +

    {{ page.title }}

    +
    +
    +

    + {% if page.extra.summary %} + {{ page.extra.summary | safe | striptags }} + {% else %} + {{ page.content | safe | striptags | truncate(length=100) }} + {% endif %} +

    +
    + +
    + {% endfor %} + +{% endblock content %} diff --git a/templates/links.html b/templates/links.html new file mode 100644 index 0000000..606a15b --- /dev/null +++ b/templates/links.html @@ -0,0 +1,8 @@ +{% extends "basic.html" %} + +{% block content %} +
    +

    Links

    +
    {{ section.content | safe }}
    +
    +{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..f2d0919 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,55 @@ +{% extends "basic.html" %} + +{% block title %}{{ config.title }} • {{ page.title }}{% endblock title %} + +{% block content %} +
    +

    {{ page.title }}

    + {% if page.extra.author %} +
    By {{ page.extra.author }}.
    + {% endif %} +
    {{ page.content | safe }}
    + +
    + +{% include "comments.html" %} +{% if page.extra.mathjax %} + + + +{% endif %} +{% if page.extra.mermaid %} + + +{% endif %} +{% endblock content %} diff --git a/templates/shortcodes/asciinema.html b/templates/shortcodes/asciinema.html new file mode 100644 index 0000000..dd170b9 --- /dev/null +++ b/templates/shortcodes/asciinema.html @@ -0,0 +1 @@ + diff --git a/templates/shortcodes/bilibili.html b/templates/shortcodes/bilibili.html new file mode 100644 index 0000000..52c5833 --- /dev/null +++ b/templates/shortcodes/bilibili.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/templates/shortcodes/mermaid.html b/templates/shortcodes/mermaid.html new file mode 100644 index 0000000..e147f47 --- /dev/null +++ b/templates/shortcodes/mermaid.html @@ -0,0 +1,3 @@ +
    +{{ body }} +
    \ No newline at end of file diff --git a/templates/tags/list.html b/templates/tags/list.html new file mode 100644 index 0000000..c3b5024 --- /dev/null +++ b/templates/tags/list.html @@ -0,0 +1,15 @@ +{% extends "basic.html" %} + +{% block content %} +
    +
      +
      Tags
      + {% for term in terms %} +
    • + {{ term.name }} + {{ term.pages | length }} +
    • + {% endfor %} +
    +
    +{% endblock content %} diff --git a/templates/tags/single.html b/templates/tags/single.html new file mode 100644 index 0000000..3efb907 --- /dev/null +++ b/templates/tags/single.html @@ -0,0 +1,23 @@ +{% extends "basic.html" %} + +{% block content %} +
    +
      +
      +
      {{ term.name }}
      +
        + {% for post in term.pages %} +
        +
        + {{ post.title }} +
        + {{ post.date }} +
        +
        +
        + {% endfor %} +
      +
      +
    +
    +{% endblock content %}