gitextract_9bhti92m/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── archetypes/ │ ├── adv-ride/ │ │ ├── index.md │ │ └── route.gpx │ ├── blog-post/ │ │ └── index.md │ ├── projects.md │ └── publications.md ├── exampleSite/ │ ├── config.toml │ ├── content/ │ │ ├── _index.md │ │ ├── blog/ │ │ │ └── force-ssl.md │ │ ├── contact.md │ │ ├── projects/ │ │ │ ├── _index.md │ │ │ ├── contributions/ │ │ │ │ ├── _index.md │ │ │ │ ├── deploy-triggers.md │ │ │ │ ├── schema-org.md │ │ │ │ └── shields-docker.md │ │ │ └── creations/ │ │ │ ├── _index.md │ │ │ ├── bosh-agents.md │ │ │ ├── docker-marketplace.md │ │ │ └── marketplace.md │ │ ├── publications/ │ │ │ ├── AllDayDevOps.md │ │ │ └── _index.md │ │ └── search.md │ ├── data/ │ │ ├── boards.json │ │ ├── certifications.json │ │ ├── education.json │ │ ├── experience.json │ │ └── skills.json │ └── static/ │ ├── .well-known/ │ │ └── google-verify.etc │ └── admin/ │ ├── README.md │ ├── cms.js │ ├── config.yml │ ├── index.html │ └── templates/ │ └── about.js ├── i18n/ │ ├── en.json │ └── fr.json ├── layouts/ │ ├── 404.html │ ├── _default/ │ │ ├── baseof.html │ │ ├── contact.html │ │ ├── contact.vcf │ │ ├── index.json │ │ ├── list.html │ │ ├── search.html │ │ ├── section.html │ │ ├── single.html │ │ ├── taxonomy.html │ │ └── terms.html │ ├── adv/ │ │ └── single.html │ ├── blog/ │ │ └── single.html │ ├── index.html │ ├── markdown/ │ │ ├── baseof.html │ │ └── single.html │ ├── partials/ │ │ ├── about.html │ │ ├── advSummary.html │ │ ├── advtags.html │ │ ├── blogSummary.html │ │ ├── breadcrumbs.html │ │ ├── contact-qr.html │ │ ├── nav.html │ │ ├── portfolio/ │ │ │ ├── education.html │ │ │ ├── experience.html │ │ │ └── skills.html │ │ ├── projectsSummary.html │ │ ├── publicationsSummary.html │ │ ├── sectionSummary.html │ │ ├── techtags.html │ │ └── vcard.html │ ├── projects/ │ │ └── single.html │ ├── publications/ │ │ └── single.html │ └── shortcodes/ │ └── imgresize.html ├── static/ │ ├── css/ │ │ ├── resume.css │ │ └── tweaks.css │ └── js/ │ ├── resume.js │ └── search.js └── theme.toml