Created
January 25, 2024 15:21
-
-
Save solancer/a53ebd17114751af40095efc8e73f6f7 to your computer and use it in GitHub Desktop.
webProjectv3 tree2dir test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webProjectv3/ | |
├── LICENSE.md | |
├── README.md | |
├── archetypes | |
│ └── default.md | |
├── docker-compose.yml | |
├── gulpfile.js | |
├── layouts | |
│ ├── 404.html | |
│ ├── blog | |
│ │ ├── li.html | |
│ │ ├── list.html | |
│ │ ├── single.html | |
│ │ └── summary.html | |
│ ├── _default | |
│ │ ├── baseof.html | |
│ │ ├── list.algolia.json | |
│ │ ├── list.html | |
│ │ └── single.html | |
│ ├── index.html | |
│ ├── partials | |
│ │ ├── content-footer.html | |
│ │ ├── custom-css.html | |
│ │ ├── custom-head.html | |
│ │ ├── edit-meta.html | |
│ │ ├── edit-page.html | |
│ │ ├── footer.html | |
│ │ ├── global-menu.html | |
│ │ ├── head.html | |
│ │ ├── last-updated.html | |
│ │ ├── menu | |
│ │ │ ├── open-menu.html | |
│ │ │ └── slide-menu.html | |
│ │ ├── meta | |
│ │ │ ├── chroma.html | |
│ │ │ ├── google-analytics-async.html | |
│ │ │ ├── google-site-verification.html | |
│ │ │ └── tag-manager.html | |
│ │ ├── notification.html | |
│ │ ├── pagination.html | |
│ │ ├── powered.html | |
│ │ ├── prepend-body.html | |
│ │ ├── search.html | |
│ │ ├── sidebar-footer.html | |
│ │ ├── sidebar.html | |
│ │ ├── site-header.html | |
│ │ └── table-of-contents.html | |
│ ├── posts | |
│ │ ├── list.html | |
│ │ └── single.html | |
│ ├── shortcodes | |
│ ├── button.html | |
│ ├── code.html | |
│ ├── panel.html | |
│ └── search.html | |
├── package-lock.json | |
├── package.json | |
├── resources | |
├── src | |
│ ├── js | |
│ │ ├── code.js | |
│ │ ├── headerlink.js | |
│ │ ├── jquery.backtothetop | |
│ │ │ ├── jquery.backtothetop.js | |
│ │ │ └── jquery.backtothetop.min.js | |
│ │ ├── keydown-nav.js | |
│ │ ├── main.js | |
│ │ └── sidebar-menu.js | |
│ └── scss | |
│ ├── _component.scss | |
│ ├── _project.scss | |
│ ├── _structure.scss | |
│ ├── _variable.scss | |
│ ├── chroma.scss | |
│ ├── foundation | |
│ │ ├── _element.scss | |
│ │ ├── _index.scss | |
│ │ ├── _normalize.scss | |
│ │ ├── _reset.scss | |
│ │ └── _stack.scss | |
│ ├── function | |
│ │ ├── _calc-font-size.scss | |
│ │ ├── _calc-stack.scss | |
│ │ ├── _contrast-color.scss | |
│ │ ├── _index.scss | |
│ │ └── _strip-unit.scss | |
│ └── theme.scss | |
├── static | |
│ ├── css | |
│ │ ├── chroma.css | |
│ │ ├── chroma.min.css | |
│ │ ├── theme.css | |
│ │ └── theme.min.css | |
│ ├── images | |
│ └── js | |
│ └── bundle.js | |
├── theme.toml | |
└── webpack.config.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment