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
AgeCommit message (Collapse)Author
2021-10-04Remove overflow on blog classThibaud Lepretre
fixes #520
2021-09-08Regenerate bundlesThibaud Lepretre
2021-08-27Restore font subset in addition to latinThibaud Lepretre
fixes #493
2021-08-27Apply clearReading to all mainSection pagesThibaud Lepretre
fixes #492
2021-08-11Regenerate bundlesThibaud Lepretre
2021-08-11Add support for touch swipe left to close sidebarThibaud Lepretre
2021-08-11Update package.json dependenciesThibaud Lepretre
2021-08-11Update dependenciesThibaud Lepretre
- [ ] Highlight is broken since latest highlight js update
2021-08-11Update bundleThibaud Lepretre
2021-08-11Add gitalk supportThibaud Lepretre
2021-08-11Update fontawesome to v5Thibaud Lepretre
2021-08-11Comment systemsThibaud 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-11Fix post to posts migrationThibaud Lepretre
2021-08-11Build prodThibaud 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
2021-08-11Correct 2 link constructionsLaurent G
2019-07-03buildThibaud Lepretre
2019-05-17fix:warn when use 0.55.5Cloud Strife
hugo version ``` $ hugo version Hugo Static Site Generator v0.55.5/extended windows/amd64 BuildDate: unknown ``` warn: ``` $ hugo Building sites … WARN 2019/05/17 19:58:25 Page's .Hugo is deprecated and will be removed in a future release. Use the global hugo function. WARN 2019/05/17 19:58:25 Page's .RSSLink is deprecated and will be removed in a future release. Use the Output Format's link, e.g. something like: {{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}. WARN 2019/05/17 19:58:25 Page's .UniqueID is deprecated and will be removed in a future release. Use .File.UniqueID. ``` Changes to be committed: * modified: layouts/partials/head.html * modified: layouts/partials/meta.html * modified: layouts/taxonomy/category.terms.html
2018-09-09Add missing implementation from original authorThibaud Leprêtre
2018-09-09Fix content out of the container when open sidebarjohnsoncodehk
fixes #278
2018-01-01remove unnecessary blank linesdojineko
2017-11-23Rework meta and social tagThibaud Leprêtre
- Add more twitter meta tag - Fix existing social tag - Add link canonical Merge both existing PR #206 and 216
2017-11-23Merge pull request #237 from yamila-moreno/BUG/223/fix_render_abbr_acronymThibaud Lepretre
Fix #223 render abbr acronym
2017-11-23 Fix #223 render abbr acronymYamila Moreno
2017-11-12Preparing next release 0.4.4-SNAPSHOTThibaud Leprêtre
2017-11-12:bookmark: version 0.4.3-BETA0.4.3-BETAThibaud Leprêtre
2017-11-02Preparing next release 0.4.3-SNAPSHOTThibaud Leprêtre
2017-11-02:bookmark: version 0.4.2-BETAThibaud Leprêtre
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-18Merge pull request #200 from dojineko/fix-custom-cssThibaud Lepretre
Fix customCSS, and update exampleSite
2017-09-18Fix tag for customCSSdojineko
2017-09-11Preparing next release 0.4.2-SNAPSHOTThibaud Leprêtre
2017-09-11:bookmark: version 0.4.1-BETAThibaud Leprêtre
2017-09-10Preparing next release 0.4.1-SNAPSHOTThibaud Leprêtre
2017-09-10Bump version to 0.4.0-BETAThibaud Leprêtre
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-20Capability to fill other attr than href/srcThibaud Leprêtre
Until now `customJs` and `customCSS` only create a `script` or `link` tags with `src` or `href`. But there is no way to add/customize more attributes like `integrity`, `rel`, `type`, etc... With new `customJS` and `customCSS` syntaxe is now possible, like following ```toml [[params.customJS]] src = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.8.0/languages/go.min.js" integrity = "sha256-LVuWfOU0rWFMCJNl1xb3K2HSWfxtK4IPbqEerP1P83M=" crossorigin = "anonymous" async = true defer = true ``` **ATTENTION** every keys of the map will be converted to tag attribute even if attribute is not part of _HTML_ spec. Futhermore, in order to do not break existing configuration it still possible to use previous syntax: ```toml customJS = ["https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.8.0/languages/go.min.js"] ``` **but you can't mix both syntax**, if you want to use new syntax you must first convert previous entries.
2017-04-19Add SRI & HTTPs for external resourcesThibaud Leprêtre
fixes #159
2017-04-19Merge pull request #160 from kakawait/bugfix/highlight-remove-span-lineThibaud Lepretre
Revamp how to apply HLjs
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-17Add theme version on generator rather than customThibaud Leprêtre
closes #140
2017-04-17Support abs URL for customJS and customCSSThibaud Leprêtre
fixes #155
2017-04-15Prepare release 0.4.0-BETAThibaud Leprêtre
2017-04-15Prepare release 0.3.1-BETAThibaud Leprêtre
2017-04-15Add theme version on meta tagThibaud Leprêtre
closes #140
2017-04-15Add again customCSSThibaud Leprêtre
2017-04-15Upgrade Merriweather font to support any langThibaud Leprêtre
fixes #142 and fixes #129
2017-04-12fix indentationThibaud Leprêtre