29 | 30 | 31 |
-
32 |
- 33 | 34 | 35 | 36 | 37 |
├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── 404.php ├── LICENSE ├── README.md ├── README.txt ├── archive-product.php ├── archive.php ├── assets ├── css │ ├── bootstrap.min.css │ ├── fontawesome-all.min.css │ └── index.html ├── images │ ├── bg_circuit.png │ ├── bg_circuit_full.png │ ├── bg_circuit_lg.png │ ├── bg_circuit_md.png │ ├── bg_circuit_mx.png │ ├── bg_circuit_sm.png │ ├── bg_circuit_xl.png │ ├── index.html │ └── logo_githuber_3d.png ├── index.html ├── js │ ├── bootstrap-toc.min.js │ ├── bootstrap.bundle.min.js │ └── index.html └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── 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 │ │ ├── layout_1cols.png │ │ ├── layout_2cols.png │ │ ├── layout_3cols.png │ │ ├── layout_footer_1.png │ │ ├── layout_footer_2.png │ │ ├── layout_footer_3.png │ │ ├── layout_footer_4.png │ │ ├── layout_footer_5.png │ │ ├── layout_footer_6.png │ │ ├── layout_footer_7.png │ │ ├── layout_sidebar_left.png │ │ ├── layout_sidebar_right.png │ │ └── mynote-transparency-grid.png │ ├── 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 ├── screenshot.png └── style.css ├── page.php ├── phpcs.xml ├── screenshot.png ├── 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 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Desktop (please complete the following information):** 24 | - OS: [e.g. iOS] 25 | - Browser [e.g. chrome, safari] 26 | - Version [e.g. 22] 27 | 28 | **Smartphone (please complete the following information):** 29 | - Device: [e.g. iPhone6] 30 | - OS: [e.g. iOS8.1] 31 | - Browser [e.g. stock browser, safari] 32 | - Version [e.g. 22] 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.rej 3 | 4 | # IDE Files 5 | #------------------------- 6 | 7 | /nbproject/ 8 | .idea/* 9 | 10 | ## Sublime Text cache files 11 | 12 | *.tmlanguage.cache 13 | *.tmPreferences.cache 14 | *.stTheme.cache 15 | *.sublime-workspace 16 | *.sublime-project 17 | /tests/tests/ 18 | /tests/results/ 19 | 20 | # Visual Studio Code 21 | 22 | .vscode/ 23 | .vscode/* 24 | 25 | !.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
29 | 30 | 31 |
CSS font setting.
180 |
181 | = 1.6.2 =
182 |
183 | - Fix HTML unclosed tag in homepage.
184 |
185 | = 1.6.3 =
186 |
187 | - Fix missing of WooCommerce support.
188 |
189 | = 2.0.0 =
190 |
191 | - Add 35 built-in hooks.
192 | - Add Sticky TOC widget.
193 |
194 | = 2.0.1 =
195 |
196 | - Fix a bug in homepage.
197 |
198 | = 2.0.4 =
199 |
200 | - Test with PHP 8.2.5 and WordPress 6.2.2
201 | - Fix widget style for WordPress 6.
202 | - Fix coding style.
203 | - Add Japanese translation.
--------------------------------------------------------------------------------
/archive-product.php:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
34 |
35 |
36 |
37 |
38 |
39 | 0&&(r+="-"+n),!document.getElementById(r))return r}},generateAnchor:function(e){if(e.id)return e.id;var t=this.generateUniqueId(e);return e.id=t,t},createNavList:function(){return e(' ')},createChildNavList:function(e){var t=this.createNavList();return e.append(t),t},generateNavEl:function(t,n){var r=e('');r.attr("href","#"+t),r.text(n);var a=e("");return a.append(r),a},generateNavItem:function(t){var n=this.generateAnchor(t),r=e(t),a=r.data("toc-text")||r.text();return this.generateNavEl(n,a)},getTopLevel:function(e){for(var t=1;t<=6;t++){var n=this.findOrFilter(e,"h"+t);if(n.length>1)return t}return 1},getHeadings:function(e,t){var n="h"+t,r=t+1,a="h"+r;return this.findOrFilter(e,n+","+a)},getNavLevel:function(e){return parseInt(e.tagName.charAt(1),10)},populateNav:function(e,t,n){var r,a=e,i=this;n.each(function(n,o){var s=i.generateNavItem(o),u=i.getNavLevel(o);u===t?a=e:r&&a===e&&(a=i.createChildNavList(r)),a.append(s),r=s})},parseOps:function(t){var n;return n=t.jquery?{$nav:t}:t,n.$scope=n.$scope||e(document.body),n}},init:function(e){e=this.helpers.parseOps(e),e.$nav.attr("data-toggle","toc");var t=this.helpers.createChildNavList(e.$nav),n=this.helpers.getTopLevel(e.$scope),r=this.helpers.getHeadings(e.$scope,n);this.helpers.populateNav(t,n,r)}},e(function(){e('nav[data-toggle="toc"]').each(function(t,n){var r=e(n);Toc.init(r)})})}(jQuery);
--------------------------------------------------------------------------------
/assets/js/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/js/index.html
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/assets/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/terrylinooo/mynote/25fa38f024c2e13e15ccd7d87e4cb99d595331eb/assets/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/author.php:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
24 |
25 |
19 |
20 |
22 |
23 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
50 | 51 |
52 |