{{ post.date | date: date_format }}
10 |by {{ post.author }}
11 |├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .nvmrc ├── .ruby-version ├── 404.html ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _config_production.yml ├── _i18n ├── en.yml └── en │ ├── _posts │ ├── 2017-08-07-Write-your-articles-with-kramdown.md │ ├── 2017-08-08-Jekyll-webpack-boilerplate-release.md │ └── 2019-03-12-new-article-written-with-netlify-cms.md │ └── about.md ├── _images ├── icon.png └── large-logo.png ├── _includes ├── cookie-consent.html ├── disqus_comments.html ├── doorbell.html ├── footer.html ├── google-analytics.html ├── head.html ├── navigation.html ├── scripts.html └── service-worker.html ├── _layouts ├── .gitignore ├── amp.html ├── blog.html ├── home.html ├── page.html └── post.html ├── _scss └── _default.scss ├── _src ├── index.js ├── index.scss └── template │ └── default.html ├── about.md ├── admin ├── config.yml └── index.html ├── blog.md ├── config ├── manifest.json ├── postcss.config.js ├── sw.config.js ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── webpack.pwa.js ├── icon.png ├── index.md ├── netlify.toml ├── package-lock.json ├── package.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | end_of_line = lf 3 | insert_final_newline = true 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | _site 2 | assets 3 | 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | const config = { 2 | "extends": "airbnb-base" 3 | }; 4 | 5 | module.exports = config; -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: sandoche 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: https://www.paypal.me/kanbanote 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | node_modules 5 | assets 6 | yarn-error.log 7 | .yarnclean 8 | .jekyll-cache 9 | 10 | # editors 11 | .idea -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.18.0 -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 18 | 19 |
Page not found :(
23 |The requested page could not be found.
24 |
2 |
3 |
{{ post.date | date: date_format }}
10 |by {{ post.author }}
11 |