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

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-08-11Add support for touch swipe left to close sidebarThibaud Lepretre
2021-08-11Fix swipe and transformThibaud Lepretre
- [x] sidebarBehavior 3 & 6 still have issue partially fixes #342 and #318
2021-08-11Update dependenciesThibaud Lepretre
- [ ] Highlight is broken since latest highlight js update
2021-08-11Fix ESLint errorsThibaud Lepretre
2021-08-11Add gitalk supportThibaud Lepretre
2021-08-11Fix embed fontawesome css usage and migrate to dart sassThibaud Lepretre
2021-08-11Update fontawesome to v5Thibaud Lepretre
2021-08-11Sync from 1cafcb39c8a101893ae30f92a0a789e2c1d8b85bThibaud Lepretre
- [x] SCSS - [x] JS - [x] i18n files - [x] HTML - [x] gitalk - [x] FontAwesome 5 - [ ] Docs Fixes #287
2021-08-11Fixing sidebar swipping and relatives itemsThibaud Lepretre
2021-08-11Revamp sidebar translationThibaud Lepretre
Use `transform: translate3d` as much as possible instead of `width` for better performance (really visibile on slow device like phone)
2021-08-11Revert #293Thibaud Lepretre
2021-08-11Add missing class without language- prefixThibaud Lepretre
```html <figure class="language-js ..." ...> ```` must become ```html <figure class="language-js js ..." ...> ``` In addition fix padding to get the same pixel alignment for gutter and sourcecode
2019-07-01Fix eslint errorThibaud Lepretre
2018-09-09Add missing implementation from original authorThibaud Leprêtre
2018-09-09Fix content out of the container when open sidebarjohnsoncodehk
fixes #278
2017-11-23 Fix #223 render abbr acronymYamila Moreno
2017-11-02Add prism.js supportThibaud Leprêtre
With new syntax highlighter prism.js, you have to configure which syntax highlighter you want to use between _highlight.js_ and _prism.js_. **However if you don't configure it, no syntax highligh will be apply** (where previously _highlight.js_ was forced by default). Please upgrade you're `config.toml` (you can checkout `exampleSite/config.toml` to see sample) to re-add _highlight.js_ as syntax highlighter (except if you don't need it): ```toml [params] syntaxHighlighter = "highligth.js" ``` fixes #24
2017-09-10Upgrade theme base on hexo 1.10.0 versionThibaud Leprêtre
- [x] Italian translation - [x] `showMeta` & `showActions` - [x] `rel="noopener"` - [x] _sharing options_ - [x] XLG side bar bug on Edge - [x] 'OLDER POSTS' Button Overlaps Sidebar - [x] Print media queries However I will not backport persian translation because I can't handle by myself the missing translation for that theme that is not exist on hexo one closes #132
2017-04-22Do not markdownify summary contentThibaud Leprêtre
fixes #151
2017-04-19Revamp how to apply HLjsThibaud Leprêtre
- Remove `<span class="line"></span>` that cause more issue than fix it - Rewrite JS that apply _HighlightJS_ fixes #154
2017-04-15Upgrade Merriweather font to support any langThibaud Leprêtre
fixes #142 and fixes #129
2016-12-04Merge pull request #71 from jeremywho/codeblock-overflowThibaud Lepretre
added horizontal scrolling for code blocks (overflow-x:auto;)
2016-12-01added horizontal scrolling for code blocks (overflow-x:auto;)jeremywho
2016-11-27Add fallback for Menlo when is not installedThibaud Leprêtre
port back https://github.com/LouisBarranqueiro/hexo-theme-tranquilpeak/pull/322 related to #24
2016-10-14Fix jump to toc and stylish todo listThibaud Leprêtre
fixes #12
2016-10-01Transform hexo template to hugoThibaud Lepretre
- [x] show case Transformation - [x] _default - [x] single - [x] summary - [x] list - [x] index (aka layout) - [x] all-archives - [x] all-categories - [x] all-tags - [x] archives - [x] categories - [x] page - [x] post - [x] tag - [x] partials - [x] about - [x] archive-post - ~~[ ] archive~~ Not compatible replace by Taxonomy list (like `taxonomy/category.html` or `taxonomy/tag.html`) - [x] cover - [x] footer - [x] google-analytics - [x] head - [x] header - [x] index - [x] pagination - [x] post - [x] action - [x] category - [x] disqus - [x] gallery - [x] header-cover - [x] header - [x] meta - [x] share-options - [x] tag - [x] script - [x] sidebar --- Misc - [x] Rename `.Site.params.author.picture` to `.Site.Author.picture` - [x] Use new function `md5` for gravatar email - [x] Rename `.Site.params.gravatar_email` to `.Site.Author.gravatar` - [x] Refactor menu to use `Hugo` menu system - [x] Upgrade code to `1.9.1` (currently based on `1.7.1`) - [x] Support non-production and production css/js - [x] TOC ? - [x] Custom tag --- Not supported - Archives pages by years `/archives/2015` - Archives pages by month `/archives/2015/01`