Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-20release: 3.7.0v3.7.0Jimmy Cai
2022-01-20feat(article): add scroll for table (#428)zhixuan
* feat: table can't scroll & delete scrollbar style for Chromium * Undo some line breaks * Add a table with overflow to exampleSite
2022-01-20feat(sidebar): link avatar to homepage (#465)Jimmy Cai
closes https://github.com/CaiJimmy/hugo-theme-stack/issues/399
2022-01-19feat: add custom.ts (#461)chenlianghong
* feat: add custom.ts * Load custom.ts only if it exists This change avoids loading an empty .js file Co-authored-by: Jimmy Cai <github@jimmycai.com>
2022-01-19feat(comment): update twikoo version to 1.4.15 (#464)tanmx
2021-12-29release: 3.6.0v3.6.0Jimmy Cai
2021-12-29feat: implement cache busting for CSS (#444)Nathan Harkenrider
2021-12-28feat: page links (#446)Jimmy Cai
2021-12-04feat: add alt message for archive & related contents images (#411)zhixuan
2021-10-31release: 3.5.0v3.5.0Jimmy Cai
2021-10-31fix(comments/cusdis): use the correct script for the self-hosted version (#403)Hue
* Modify the Self-hosting js source path * refactor(comments/cusdis): avoid multiple if statement Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-10-29fix(menu/social): Delete `relLangURL` (#406)zhixuan
2021-10-23release: 3.4.0v3.4.0Jimmy Cai
2021-10-23feat: social menu (#401)Jimmy Cai
2021-10-23refactor(menu): use .Params.icon to configure menu item icon (#400)Jimmy Cai
2021-10-16fix: appropriate back button and menu links for multi-language site (#386)MikDal002
2021-10-01feat(comments): add Cusdis support (#372)WingLim
* feat: add cusdis support * docs: add cusdis example config
2021-09-24fix(shortcodes): mixed content error with bilibili and tencent video (#365)zhixuan
2021-09-18feat(comments): add Gitalk support (#351)Cookiekira
2021-09-17fix(article/comments): accept boolean `true` in `.Params.comments` (#352)Christopher John Jackson
2021-08-26feat(article): add positional parameter for `video` shortcode (#331)zhixuan
2021-08-25release: 3.2.0v3.2.0Jimmy Cai
2021-08-25refactor(article): better support for svg and external images (#326)Jimmy Cai
2021-08-15feat(comments): DisqusJS integration (#307)SSpirits
* add comment provider: DisqusJS * Simplify `if` condition, and format code * Load disqusjs.scss only when it's enabled * Use `let` instead of `var` Co-authored-by: sspirits <admin@lv5.moe> Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-08-15release: 3.1.0v3.1.0Jimmy Cai
2021-08-15feat(comments): giscus integration (#304)zhixuan
Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-08-15fix(article): change `.article-time` classname to `.article-lastmod` (#306)zhixuan
2021-08-08release: 3.0.0v3.0.0Jimmy Cai
2021-08-08feat(menu): support open an entry in new tab (#294)Jimmy Cai
* feat(menu): support open an entry in new tab closes https://github.com/CaiJimmy/hugo-theme-stack/issues/230 * Revert change in markup.tableOfContents.ordered * Upgrade Netlify Hugo version * doc: require Hugo Extended >= 0.87.0
2021-08-07fix(comments): improve Twikoo style (#289)zhixuan
2021-08-05fix(comment/twikoo): submit button color (#288)zhixuan
2021-08-04feat(comment): add `Twikoo` support (#286)zhixuan
* Create twikoo.html * Upgrade to Twikoo 1.4.3 and add `lang` param * Add twikoo section in config.yaml Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-07-27feat(article): add video shortcode (#280)zhixuan
2021-07-25feat(article): use `markdownify` for licence in article (#273)Simon Guest
* Use markdownify for licence in article So we can use links, e.g. to credits for main photo. * refactor: move .article-copyright style to partials/layout/article Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-07-23feat(article): reading time (#204)Bachrul uluum
* add reading time feature * Revert change in jsconfig.json * feat: add article.readingTime param, and improve style * Revert change in jsconfig.json x2 * Remove reading time in compact layout It doesn't look right to me for now * feat: add i18n support to reading time string * Hide footer.article-time when there's not content Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-07-23feat(sidebar): add option to disable avatar in left sidebar (#268)Hendra Manudinata
* Allow to disable logo image in left sidebar * Enable sidebar avatar by default for backward compatibility Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-07-07feat(comment/vssue): add parameter 'autoCreateIssue' (#258)慕枫Go
It's default false
2021-07-06release: version 2.5.0v2.5.0Jimmy Cai
2021-06-21release: v2.4.0v2.4.0Jimmy
2021-06-21feat: Table of Contents (#232)Jimmy Cai
Currently, the new table of contents is disabled by default. I will change that after several versions. ------------- * feat: Table of Content (WIP) * fix: set scratch inside define block * fix(toc): darkmode text color * feat: unify page layout, and add config to disable toc * feat: add scroll-behavior: smooth to html * fix: use <ol> for TOC. And Disable TOC by default for now * refactor: use css flexbox for article page with toc enable toc for example site * feat(i18n): add i18n entry for "Back" and "Table of Contents" * style: remove unused `keep-sidebar` class * doc: add table of contents as feature
2021-06-20feat: change the page vertical scrollbar styles (#227)k
* fix: take out [data-scheme="dark"] from :root Taking out the [data-scheme="dark"] from :root allows us to fix the precedence of CSS when the [data-scheme="dark"] is placed in the <html> tag. This is needed in order to make the dark styles accesible from the <html> elment, this will allow us to change the vertical scrollbar styles following the dark and light schemes. * change document.body.dataset.scheme to document.documentElement.dataset.scheme When the dark mode is on or when the light mode is on, the [data-scheme="light"] or [data-scheme="dark"], respectively, will be placed in the <html> tag. Allowing us to access the dark and light color schemes from the <html> to change the vertical scrollbar styles according to the current color scheme. * feat: change the page vertical scrollbar styles This change will make the vertical scrollbar styles to follow the dark and light color scheme modes. Also, this change will make the vertical scrollbar to look consistent in both, Chromium and Firefox. * make the scrollbar-track background-color transparent The body has this transition: 'transition: background-color 0.3s ease 0s'. Making the scrollbar-track background-color transparent allow us to appreciate that transition in the scrollbar-track when switching the background-color. * Move [data-scheme=dark] back to :root block * fix(comment/waline): detect dark mode from html tag * feat: apply custom scrollbar style to all elements Co-authored-by: Jimmy Cai <jimmehcai@gmail.com>
2021-06-20refactor: rewrite grid system & style changes (#231)Jimmy Cai
* refactor(WIP): add new SCSS mixin `respond` Theme's stylesheet mixes the use of max-width and min-width for responsive design, and it's horrible. * refactor: update variable.scss to use @mixin respond * refactor(grid): adjust sidebar max-width * refactor(partials/article.scss): use `@include respond` * refactor(layout/article.scss): delete unused SCSS and migrate to `@include respond` * Adjust left sidebar max-width on xl screen * fix: right sidebar not sticky * refactor(breakpoint): simplify `@mixin respond` * refactor(breakpoints): improve warning message * fix(breakpoint): return only the requested breakpoint * fix: add missing padding to .article-details
2021-06-14feat(comment): add Waline (#200)暁学生
* feat(comment): add Waline * fix: waline client config * fix: waline client config * #200#issuecomment-860025299 * Update config.yaml * Update Waline section of config.yaml * Remove double quote escape Co-authored-by: zhixuan <jinzhixuan666@gmail.com> Co-authored-by: Jimmy Cai <jimmehcai@gmail.com>
2021-06-12feat: Add support for Google Analytics v4 (#214)zhixuan
2021-06-12fix(typo): change 'a ex.*' for 'an ex.*' (#213)k
In order to fix this kind of typo, the (not sophisticated) Regular Expression: `[a-zA-Z] [aA] [aeiouAEIOU]` was ran. That Regular Expression matches some good written sentences like `a User`, therefore, those has been omitted.
2021-04-26feat: add Vssue comment (#197)慕枫Go
* 添加Vssue评论插件 * 修复默认代理过期问题 * style(comment/vssue): format html Co-authored-by: Jimmy Cai <github@jimmycai.com>
2021-04-07refactor(opengraph/twitter): add @ before username (#186)zhixuan
https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/twitter_cards.html
2021-03-28release: 2.3.0v2.3.0Jimmy Cai
2021-03-07fix: incorrect image & menu path for site hosted in subdir (#168)Jimmy Cai
2021-03-07refactor(article): add default padding (#166)Jimmy Cai
* refactor(article): add default padding closes https://github.com/CaiJimmy/hugo-theme-stack/issues/165 * fix(article): video iframe margin * fix: remove youtube iframe border