gitextract_oj22w69v/ ├── .gitignore ├── LICENSE ├── README.md ├── archetypes/ │ ├── blog.md │ └── products.md ├── assets/ │ └── css/ │ └── style.css ├── exampleSite/ │ ├── .gitignore │ ├── archetypes/ │ │ ├── blog.md │ │ └── products.md │ ├── content/ │ │ ├── _index.md │ │ ├── about.md │ │ ├── blog/ │ │ │ ├── _index.md │ │ │ ├── emoji-support.md │ │ │ ├── markdown-syntax.md │ │ │ ├── math-typesetting.md │ │ │ ├── placeholder-text.md │ │ │ └── rich-content.md │ │ ├── contact.md │ │ └── products/ │ │ ├── _index.md │ │ └── example.md │ ├── data/ │ │ ├── features.json │ │ └── slide.json │ ├── hugo.toml │ ├── layouts/ │ │ └── .gitkeep │ ├── package.json │ └── static/ │ └── css/ │ └── custom.css ├── layouts/ │ ├── 404.html │ ├── _default/ │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── blog/ │ │ └── single.html │ ├── index.html │ ├── partials/ │ │ ├── alert.html │ │ ├── analytics.html │ │ ├── comments.html │ │ ├── footer.html │ │ ├── giscus.html │ │ ├── head.html │ │ ├── header.html │ │ ├── paginator.html │ │ ├── recent.html │ │ ├── seo/ │ │ │ ├── extend.html │ │ │ ├── print.html │ │ │ └── tags.html │ │ ├── share.html │ │ ├── slide.html │ │ ├── strip.html │ │ └── summary.html │ ├── products/ │ │ ├── list.html │ │ └── summary.html │ └── shortcodes/ │ ├── begin-task-list.html │ ├── form.html │ ├── icon.html │ └── img.html ├── static/ │ ├── css/ │ │ └── webfonts.css │ └── site.webmanifest └── theme.toml