gitextract_sah6h9cm/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── 404.php ├── LICENSE ├── README.md ├── README.txt ├── archive-product.php ├── archive.php ├── assets/ │ ├── css/ │ │ └── index.html │ ├── images/ │ │ └── index.html │ ├── index.html │ └── js/ │ └── index.html ├── author.php ├── category.php ├── comments.php ├── composer.json ├── custom-landing-page-full.php ├── custom-landing-page-simple.php ├── editor-style.css ├── footer.php ├── functions.php ├── header.php ├── inc/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── index.html │ │ │ ├── mynote-alpha-color-picker.css │ │ │ ├── mynote-image-radio.css │ │ │ └── mynote-toggle.css │ │ ├── images/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── js/ │ │ │ ├── index.html │ │ │ ├── mynote-alpha-color-picker.js │ │ │ └── mynote-image-radio.js │ │ └── scss/ │ │ ├── config.rb │ │ ├── index.html │ │ ├── mynote-alpha-color-picker.scss │ │ ├── mynote-image-radio.scss │ │ └── mynote-toggle.scss │ ├── classes/ │ │ ├── customizer/ │ │ │ ├── class-customize-alpha-color-control.php │ │ │ ├── class-customize-content-control.php │ │ │ ├── class-customize-image-radio-control.php │ │ │ ├── class-customize-toggle-control.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── navbar/ │ │ │ ├── class-mynote-walker.php │ │ │ └── index.html │ │ └── widgets/ │ │ └── class-mynote-widget-toc.php │ ├── customer/ │ │ ├── about.php │ │ ├── homepage.php │ │ ├── index.html │ │ ├── layout.php │ │ ├── navbar.php │ │ ├── post-card.php │ │ ├── post-page.php │ │ └── progress-bar.php │ ├── customize-css.php │ ├── customizer.php │ ├── icon-functions.php │ ├── index.html │ ├── template-functions.php │ ├── template-hook-functions.php │ ├── template-hooks.php │ └── template-tags.php ├── index.php ├── languages/ │ ├── de_DE.mo │ ├── de_DE.po │ ├── fr_FR.mo │ ├── fr_FR.po │ ├── ja.mo │ ├── ja.po │ ├── mynote.pot │ ├── pt_BR.mo │ └── pt_BR.po ├── mynote-child/ │ ├── functions.php │ └── style.css ├── page.php ├── phpcs.xml ├── scss/ │ ├── _bootstrap.scss │ ├── _breadcrumb.scss │ ├── _buttons.scss │ ├── _comment.scss │ ├── _footer.scss │ ├── _functions.scss │ ├── _header.scss │ ├── _home.scss │ ├── _labels.scss │ ├── _main.scss │ ├── _markdown-theme-github.scss │ ├── _misc.scss │ ├── _page-progress.scss │ ├── _responsive.scss │ ├── _shortcode.scss │ ├── _sticky-top.scss │ ├── _table-of-content.scss │ ├── _the-author-card.scss │ ├── _typography.scss │ ├── _variables.scss │ ├── _video.scss │ ├── _widget.scss │ ├── _wordpress.scss │ ├── config.rb │ ├── editor-style.scss │ ├── index.html │ └── style.scss ├── search.php ├── searchform.php ├── sidebar-archive.php ├── sidebar-home.php ├── single-product.php ├── single.php ├── style.css ├── tag.php └── template-parts/ ├── archive.php ├── content-none.php ├── index.html ├── loop.php ├── page-landing.php └── pagination.php