gitextract_ytsfl82u/ ├── .github/ │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── archetypes/ │ ├── default.md │ └── homepage.md ├── assets/ │ ├── css/ │ │ ├── _index.scss │ │ ├── content.scss │ │ ├── fontawesome/ │ │ │ └── LICENSE.txt │ │ ├── fonts.css │ │ ├── generic.css │ │ ├── normalize.css │ │ ├── responsiveness.scss │ │ ├── theme.scss │ │ └── variables.scss │ └── js/ │ └── index.js ├── contributing.md ├── exampleSite/ │ ├── content/ │ │ ├── de/ │ │ │ ├── _index.md │ │ │ ├── homepage/ │ │ │ │ ├── about-me-local-img.md │ │ │ │ ├── contact.md │ │ │ │ ├── external.md │ │ │ │ ├── index.md │ │ │ │ ├── legal-brief.md │ │ │ │ ├── license.md │ │ │ │ ├── opener.md │ │ │ │ └── services.md │ │ │ ├── legal.md │ │ │ ├── license.md │ │ │ └── services.md │ │ └── en/ │ │ ├── _index.md │ │ ├── homepage/ │ │ │ ├── about-me.de.md │ │ │ ├── about-me.md │ │ │ ├── contact.md │ │ │ ├── credits.md │ │ │ ├── external.md │ │ │ ├── index.md │ │ │ ├── legal-brief.md │ │ │ ├── license.md │ │ │ ├── opener.md │ │ │ └── services.md │ │ ├── legal.md │ │ ├── license.md │ │ └── services.md │ ├── hugo.toml │ └── layouts/ │ └── partials/ │ ├── custom_head.html │ └── custom_header_video.html ├── i18n/ │ ├── de.toml │ └── en.toml ├── layouts/ │ ├── 404.html │ ├── _default/ │ │ ├── baseof.html │ │ ├── index.html │ │ ├── list.html │ │ └── single.html │ ├── partials/ │ │ ├── custom_body.html │ │ ├── custom_head.html │ │ ├── custom_header_video.html │ │ ├── footer.html │ │ ├── head.html │ │ └── header.html │ └── shortcodes/ │ ├── contact_list.html │ ├── email.html │ ├── extlink.html │ ├── icon.html │ ├── phone.html │ └── rawhtml.html ├── netlify.toml ├── package.json └── theme.toml