Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-26 | feat: auto ignore invalid images | Jeffrey Tse | |
2023-08-26 | fix: browser errors were logged to the console | Jeffrey Tse | |
2023-08-24 | feat: show author for posts that specify one (#122) | Tom Hebb | |
* feat: show author for posts that specify one Posts by default inherit the site's author, but it's possible to override that per post, which affects--e.g.--the RSS metadata. For posts that do so, we don't currently show that anywhere in the theme. Add a new piece of metadata to posts, along with the date and reading time, that displays the author only when it's not inherited from the site. * Update pagination-item.html --------- Co-authored-by: JT <jeffreytse.mail@gmail.com> | |||
2023-08-23 | feat: support to pin articles (#50) | Jeffrey Tse | |
This feature can allow you to top articles via post front meta property `top`, the value is a number, the smaller the number is, the higher priority the article has. Example: ``` title: My Article top: <number> ``` | |||
2023-08-03 | perf: better seo for page paragraph | Jeffrey Tse | |
2023-08-03 | fix: document does not have a valid `rel=canonical` | Jeffrey Tse | |
Refs: https://developer.chrome.com/en/docs/lighthouse/seo/canonical/ | |||
2023-08-03 | perf: reduce render-blocking scripts | Jeffrey Tse | |
2023-06-30 | feat: upgrade photo previewer to PhotoSwipe 5 (#115) | Jeffrey Tse | |
2023-06-30 | feat: photo previewer config options support | Jeffrey Tse | |
2023-06-28 | fix: image previewer was corrupted by size unit (#114) | Jeffrey Tse | |
When we set img attribute with unit (e.g. width="100px"), it will be corrupted. | |||
2023-06-25 | feat: photo previewer support (#113) | JT | |
2023-06-24 | feat: google analytics 4 (GA4) support (#112) | Jeffrey Tse | |
2022-08-21 | fix: remove non standard `rel=shortcut` (#97) | Rotzbua | |
shortcut is used by IE6 which is dead and not supported anymore by most new frameworks and projects | |||
2022-07-14 | fix: utterances script to obey the `follow_site_theme` setting (#91) | Nuri Jung | |
* Fix js for correct theme load * Use dataTheme directly instead ternary operator | |||
2022-05-05 | feat: support utterances comment (#83) | 裸奔狂甩丁丁 | |
2022-04-05 | feat: click to top (#84) | 裸奔狂甩丁丁 | |
2022-02-09 | docs: fix typo and use https (#79) | Rotzbua | |
* fix typo * fix links http -> https | |||
2022-01-16 | fix: meta-close-tag not required (#73) | Rotzbua | |
2021-08-27 | feat: support for custom head content (#59) | Rafa Marcén | |
2021-08-12 | fix: inaccurate google translation behavior (#55) | jeffreytse | |
2021-06-29 | fix: liquid syntax error of footer copyright | jeffreytse | |
2021-06-29 | feat: support copyright placeholders/variables (#46) | Yuchen Zhang | |
* feat: re-format copyright message and auto increase current year * docs: add comment for copyright setting This comment is crucial, especially for newcomers. * refactor: better liquid code format Co-authored-by: jeffreytse <jeffreytse.mail@gmail.com> | |||
2021-06-28 | perf: postpone initializing site header | jeffreytse | |
Postpone this step to the stage that DOM loaed, but img and css not | |||
2021-06-28 | perf: postpone loading google-analytics script | jeffreytse | |
2021-06-28 | perf: links to cross-origin destinations are unsafe | jeffreytse | |
Add `ref=noopener` to the `a.goog-logo-link` tag to solve the issue found out by Chrome lighthouse. | |||
2021-06-27 | fix: video banner is not working in Safari (#47) | jeffreytse | |
Auto add muted and playsinline properties when this permission issue occurred. | |||
2021-06-26 | feat: support video banner | jeffreytse | |
2021-06-26 | fix: wrong default value of calling functions | jeffreytse | |
2021-06-25 | style: adjust the liquid syntax of some code | jeffreytse | |
2021-06-25 | feat: support banner heading and subheading styles | jeffreytse | |
2021-06-25 | fix: get value from site config incorrectly | jeffreytse | |
When the value is stored in a dictionary and the value isn't presented in front matter, the get_value function can not get value from the site config instead. | |||
2021-06-17 | feat: add min_height option to banner | jeffreytse | |
2021-06-17 | fix: config of banner background not working | jeffreytse | |
2021-06-17 | fix: wrong default banner opacity and height | jeffreytse | |
2021-06-17 | feat: add img tag of banner for SEO | jeffreytse | |
2021-06-17 | feat: support advanced banner configuration | jeffreytse | |
Support to configurate the banner opacity and height. | |||
2021-06-17 | style: revise liquid code syntax | jeffreytse | |
2021-05-27 | fix: hash locating of cjk heading isn't working (#44) | jeffreytse | |
When the heading includes CJK (Chinese, Japanese, Korean) characters, the hash locating isn't working correctly, the page will not automatically scroll to the corresponding heading. | |||
2021-05-26 | feat: better post excerpt of pagination | jeffreytse | |
Add "Read More" to the end of post excerpt, and support to click the excerpt to open the post. | |||
2021-05-02 | fix: wrong relative url of post tag in pagination (#31) | Mark | |
Co-authored-by: Mark Chen <markchenyutian@gmail.com> | |||
2021-01-23 | chore: change the default article excerpt size | jeffreytse | |
2021-01-11 | fix: invalid integer in get_article_excerpt function | jeffreytse | |
2021-01-11 | fix: article excerpt was incorrect for cjk content | jeffreytse | |
2021-01-11 | chore: reivise get_reading_time function | jeffreytse | |
2021-01-11 | feat: add some article-related functions | jeffreytse | |
These functions include get_article_excerpt and get_article_words. | |||
2021-01-11 | fix: reading time was incorrect for cjk words (#20) | jeffreytse | |
The liquid filter `number_of_words` is for english words, so here we use a calculation to estimate accurately the words, especially when the language is not English. | |||
2021-01-08 | chore: remove unused test ouput | jeffreytse | |
2021-01-08 | feat: support configure the code badge (#19) | jeffreytse | |
2021-01-08 | refactor: migrate code highlight to an extension | jeffreytse | |
2021-01-08 | feat: support dict object for `get_value` function | jeffreytse | |