gitextract_pae652cm/ ├── .eslintrc.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── codeql/ │ │ └── codeql-config.yml │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── auto-merge.yml │ ├── codeql.yml │ ├── lint-build.yml │ ├── mod-update.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .husky/ │ ├── commit-msg │ ├── install.mjs │ └── pre-commit ├── .markdownlint-cli2.jsonc ├── .stylelintignore ├── .stylelintrc.json ├── CLAUDE.md ├── LICENSE ├── README.md ├── archetypes/ │ └── default.md ├── assets/ │ ├── js/ │ │ ├── alert.js │ │ ├── animation.js │ │ ├── clipboard.js │ │ ├── critical/ │ │ │ ├── _cookie.js │ │ │ ├── color.js │ │ │ ├── languageSelector.js │ │ │ └── sidebar-pre-init.js │ │ ├── menu.js │ │ ├── modal.js │ │ ├── nav.js │ │ ├── navbar.js │ │ ├── optional/ │ │ │ └── .gitkeep │ │ ├── popover.js │ │ ├── sharing.js │ │ ├── sidebar-group.js │ │ ├── sidebar-toggle.js │ │ ├── testimonial.js │ │ ├── toast.js │ │ ├── toc.js │ │ ├── tooltip.js │ │ ├── vendor/ │ │ │ └── .gitkeep │ │ └── video.js │ └── scss/ │ ├── app-dart.scss │ ├── app.scss │ ├── common/ │ │ ├── _animation.scss │ │ ├── _export.scss │ │ ├── _icons.scss │ │ ├── _masonry.scss │ │ ├── _scrollbar.scss │ │ ├── _styles.scss │ │ ├── _utilities-custom.scss │ │ ├── _utilities-responsive.scss │ │ ├── _variables-dark.scss │ │ ├── _variables-dart.scss │ │ └── _variables.scss │ ├── components/ │ │ ├── _abbr.scss │ │ ├── _alert.scss │ │ ├── _blockquote.scss │ │ ├── _button.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _clipboard.scss │ │ ├── _command.scss │ │ ├── _docs.scss │ │ ├── _feature.scss │ │ ├── _footer.scss │ │ ├── _img.scss │ │ ├── _kbd.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _persona.scss │ │ ├── _popover.scss │ │ ├── _sidebar.scss │ │ ├── _syntax-dark.scss │ │ ├── _syntax-dart.scss │ │ ├── _syntax-light.scss │ │ ├── _syntax.scss │ │ ├── _table.scss │ │ ├── _testimonial.scss │ │ ├── _timeline.scss │ │ ├── _toast.scss │ │ ├── _toc.scss │ │ ├── _tooltip.scss │ │ └── _video.scss │ ├── helpers/ │ │ ├── _colored-links.scss │ │ └── _display.scss │ ├── layouts/ │ │ ├── _reboot.scss │ │ └── _type.scss │ ├── theme/ │ │ ├── _variables.scss │ │ ├── base.scss │ │ ├── fonts.scss │ │ └── theme.scss │ └── vendor/ │ └── .gitkeep ├── commitlint.config.js ├── config/ │ ├── _default/ │ │ ├── hugo.toml │ │ ├── languages.toml │ │ ├── markup.toml │ │ ├── menus/ │ │ │ └── menus.en.toml │ │ ├── params.toml │ │ └── server.toml │ ├── ci/ │ │ └── hugo.toml │ ├── development/ │ │ └── params.toml │ ├── postcss.config.js │ └── production/ │ ├── deployment.toml │ ├── hugo.toml │ └── params.toml ├── content/ │ ├── _index.md │ └── _modals/ │ └── _index.md ├── data/ │ ├── .gitkeep │ ├── dimensions.yml │ ├── netlify.toml │ ├── server.toml │ └── structures/ │ ├── abbr.yml │ ├── accordion-item.yml │ ├── accordion.yml │ ├── alert.yml │ ├── args.yml │ ├── background.yml │ ├── badge.yml │ ├── breadcrumb.yml │ ├── button-group.yml │ ├── button.yml │ ├── card-group.yml │ ├── card-icon.yml │ ├── card.yml │ ├── carousel-item.yml │ ├── carousel.yml │ ├── collapse.yml │ ├── command.yml │ ├── docs.yml │ ├── download.yml │ ├── example.yml │ ├── featured-illustration.yml │ ├── file.yml │ ├── form-hook.yml │ ├── get-dimension.yml │ ├── hero-image.yml │ ├── image-adapter-rewrite.yml │ ├── image-adapter.yml │ ├── image-definition.yml │ ├── image-dimension.yml │ ├── image-rewrite.yml │ ├── image-set.yml │ ├── image.yml │ ├── ins.yml │ ├── kbd.yml │ ├── link.yml │ ├── links.yml │ ├── list.yml │ ├── live-pages.yml │ ├── mark.yml │ ├── menu-item.yml │ ├── nav-item.yml │ ├── nav.yml │ ├── navbar-item.yml │ ├── navbar.yml │ ├── page-alert.yml │ ├── pagination.yml │ ├── persona.yml │ ├── release.yml │ ├── script.yml │ ├── scripts.yml │ ├── section-header.yml │ ├── section-menu.yml │ ├── section-title.yml │ ├── sidebar.yml │ ├── spinner.yml │ ├── stack.yml │ ├── sub.yml │ ├── sup.yml │ ├── table.yml │ ├── testimonial.yml │ ├── timeline.yml │ ├── toast.yml │ ├── toc.yml │ ├── tooltip.yml │ ├── version.yml │ └── video.yml ├── eslint.config.mjs ├── exampleSite/ │ ├── .gitignore │ ├── config/ │ │ ├── _default/ │ │ │ ├── hugo.toml │ │ │ ├── languages.toml │ │ │ ├── markup.toml │ │ │ ├── menus/ │ │ │ │ ├── menus.en.toml │ │ │ │ ├── menus.fr.toml │ │ │ │ └── menus.nl.toml │ │ │ ├── netlify.toml │ │ │ ├── params.fr.toml │ │ │ ├── params.nl.toml │ │ │ ├── params.toml │ │ │ └── server.toml │ │ ├── ci/ │ │ │ └── hugo.toml │ │ ├── development/ │ │ │ └── params.toml │ │ └── postcss.config.js │ ├── content/ │ │ ├── en/ │ │ │ ├── _index.md │ │ │ ├── about.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── first-post.md │ │ │ │ ├── fourth-post.md │ │ │ │ ├── second-post.md │ │ │ │ └── third-post.md │ │ │ ├── browserconfig.md │ │ │ ├── cookies.md │ │ │ ├── privacy.md │ │ │ └── team/ │ │ │ ├── _content.gotmpl │ │ │ └── _index.en.md │ │ ├── fr/ │ │ │ ├── _index.md │ │ │ ├── about.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── first-post.md │ │ │ │ ├── fourth-post.md │ │ │ │ ├── second-post.md │ │ │ │ └── third-post.md │ │ │ ├── browserconfig.md │ │ │ ├── cookies.md │ │ │ └── privacy.md │ │ └── nl/ │ │ ├── _index.md │ │ ├── about.md │ │ ├── blog/ │ │ │ ├── _index.md │ │ │ ├── first-post.md │ │ │ ├── fourth-post.md │ │ │ ├── second-post.md │ │ │ └── third-post.md │ │ ├── browserconfig.md │ │ ├── cookies.md │ │ └── privacy.md │ ├── data/ │ │ └── server.toml │ ├── go.mod │ ├── go.sum │ ├── hinode.work │ ├── hinode.work.sum │ ├── hugo_stats.json │ └── layouts/ │ └── _partials/ │ ├── footer/ │ │ └── footer.html │ └── templates/ │ └── script.html ├── go.mod ├── go.sum ├── hugo_stats.json ├── i18n/ │ ├── de.yaml │ ├── en.yaml │ ├── fr.yaml │ ├── nl.yaml │ ├── pl.yaml │ ├── pt-br.yaml │ ├── zh-hans.yaml │ └── zh-hant.yaml ├── layouts/ │ ├── 404.html │ ├── _markup/ │ │ ├── render-blockquote.html │ │ ├── render-codeblock-math.html │ │ ├── render-codeblock.html │ │ ├── render-heading.html │ │ ├── render-image.html │ │ ├── render-link.html │ │ ├── render-passthrough.html │ │ └── render-table.html │ ├── _partials/ │ │ ├── assets/ │ │ │ ├── adapters/ │ │ │ │ ├── cloudinary.html │ │ │ │ ├── hugo.html │ │ │ │ ├── imagekit-rewrite.html │ │ │ │ ├── imagekit.html │ │ │ │ └── imgix.html │ │ │ ├── args.html │ │ │ ├── breadcrumb.html │ │ │ ├── button.html │ │ │ ├── card-group.html │ │ │ ├── card-icon.html │ │ │ ├── card.html │ │ │ ├── carousel-item.html │ │ │ ├── download.html │ │ │ ├── featured-illustration.html │ │ │ ├── helpers/ │ │ │ │ ├── GetDimension.html │ │ │ │ ├── image-definition.html │ │ │ │ ├── image-dimension.html │ │ │ │ ├── image-rewrite.html │ │ │ │ ├── image-set.html │ │ │ │ ├── navbar-item.html │ │ │ │ ├── navbar-languages.html │ │ │ │ ├── navbar-mode.html │ │ │ │ ├── navbar-render-menu.html │ │ │ │ ├── navbar-versions.html │ │ │ │ └── sidebar-menu-entry.html │ │ │ ├── hero-image.html │ │ │ ├── image.html │ │ │ ├── link.html │ │ │ ├── links.html │ │ │ ├── live-card.html │ │ │ ├── live-image.html │ │ │ ├── live-pages.html │ │ │ ├── menu-item.html │ │ │ ├── modals.html │ │ │ ├── nav-item.html │ │ │ ├── nav.html │ │ │ ├── navbar.html │ │ │ ├── page-alert.html │ │ │ ├── pagination.html │ │ │ ├── persona.html │ │ │ ├── section-title.html │ │ │ ├── sidebar.html │ │ │ ├── spinner.html │ │ │ ├── stack.html │ │ │ ├── table.html │ │ │ ├── testimonial.html │ │ │ ├── timeline.html │ │ │ ├── toast.html │ │ │ ├── toc-dropdown.html │ │ │ ├── toc-headings.html │ │ │ ├── toc-main.html │ │ │ ├── toc-parse-content.html │ │ │ ├── toc.html │ │ │ ├── version.html │ │ │ └── video.html │ │ ├── footer/ │ │ │ ├── footer.html │ │ │ ├── scripts.html │ │ │ ├── social.html │ │ │ └── toast-container.html │ │ ├── head/ │ │ │ ├── favicon.html │ │ │ ├── head.html │ │ │ ├── icons.html │ │ │ ├── opengraph.html │ │ │ ├── seo.html │ │ │ ├── structured-data.html │ │ │ ├── stylesheet-core.html │ │ │ ├── stylesheet.html │ │ │ └── twitter_cards.html │ │ ├── page/ │ │ │ ├── articles.html │ │ │ ├── blocks.html │ │ │ ├── metadata.html │ │ │ ├── navbar-extra.html │ │ │ ├── navigation.html │ │ │ ├── sharing.html │ │ │ ├── sidebar-offcanvas.html │ │ │ ├── sidebar.html │ │ │ ├── tags.html │ │ │ ├── taxonomy-list.html │ │ │ ├── taxonomy-tag.html │ │ │ └── thumbnail.html │ │ ├── templates/ │ │ │ └── script.html │ │ └── utilities/ │ │ ├── AddModule.html │ │ ├── GetBackgroundStyle.html │ │ ├── GetIllustration.html │ │ ├── GetIncludeTOC.html │ │ ├── GetLink.html │ │ ├── GetMetadata.html │ │ ├── GetSharing.html │ │ ├── InitModules.html │ │ └── git.html │ ├── _shortcodes/ │ │ ├── abbr.html │ │ ├── abbr.md │ │ ├── accordion-item.html │ │ ├── accordion-item.md │ │ ├── accordion.html │ │ ├── accordion.md │ │ ├── alert.html │ │ ├── alert.md │ │ ├── args.html │ │ ├── args.md │ │ ├── badge.html │ │ ├── badge.md │ │ ├── breadcrumb.html │ │ ├── breadcrumb.md │ │ ├── button-group.html │ │ ├── button-group.md │ │ ├── button.html │ │ ├── button.md │ │ ├── card-group.html │ │ ├── card-group.md │ │ ├── card.html │ │ ├── card.md │ │ ├── carousel.html │ │ ├── carousel.md │ │ ├── collapse.html │ │ ├── collapse.md │ │ ├── command.html │ │ ├── command.md │ │ ├── docs.html │ │ ├── docs.md │ │ ├── example-bookshop.html │ │ ├── example-bookshop.md │ │ ├── example.html │ │ ├── example.md │ │ ├── file.html │ │ ├── file.md │ │ ├── image.html │ │ ├── image.md │ │ ├── img.html │ │ ├── img.md │ │ ├── ins.html │ │ ├── ins.md │ │ ├── kbd.html │ │ ├── kbd.md │ │ ├── link.html │ │ ├── link.md │ │ ├── mark.html │ │ ├── mark.md │ │ ├── nav-item.html │ │ ├── nav-item.md │ │ ├── nav.html │ │ ├── nav.md │ │ ├── navbar.html │ │ ├── navbar.md │ │ ├── persona.html │ │ ├── persona.md │ │ ├── release.html │ │ ├── release.md │ │ ├── spinner.html │ │ ├── spinner.md │ │ ├── sub.html │ │ ├── sub.md │ │ ├── sup.html │ │ ├── sup.md │ │ ├── table.html │ │ ├── table.md │ │ ├── testimonial.html │ │ ├── testimonial.md │ │ ├── timeline.html │ │ ├── timeline.md │ │ ├── toast.html │ │ ├── toast.md │ │ ├── tooltip.html │ │ ├── tooltip.md │ │ ├── video.html │ │ ├── video.md │ │ ├── vimeo.html │ │ ├── vimeo.md │ │ ├── youtube.html │ │ └── youtube.md │ ├── alias.html │ ├── baseof.html │ ├── baseof.xml │ ├── body.html │ ├── docs/ │ │ ├── all.html │ │ ├── body.html │ │ ├── footer.html │ │ └── header.html │ ├── footer.html │ ├── form/ │ │ └── single.html │ ├── header.html │ ├── index.redir │ ├── list.html │ ├── minimal/ │ │ ├── body.html │ │ ├── footer.html │ │ └── header.html │ ├── robots.txt │ ├── single.html │ ├── single.xml │ ├── tags/ │ │ └── list.html │ └── toc.html ├── netlify.toml ├── package.json ├── static/ │ └── js/ │ └── alias.js └── theme.toml