├── .gitignore ├── .hugo_build.lock ├── Makefile ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── fr │ ├── 00-intro.md │ ├── 01-identifier.md │ ├── 02-prevenir.md │ ├── 03-resoudre.md │ ├── 04-outro.md │ ├── 05-glossaire.md │ ├── 06-bibliographie.md │ └── 07-about.md └── images │ ├── portrait-bastien-baillot-150.jpg │ ├── portrait-bastien-baillot-orig.jpg │ ├── quadrant.jpg │ └── triptyque-prix-qualite-delais.jpg ├── data └── mois.yml ├── layouts ├── 404.html ├── index.html └── sitemap.xml ├── static ├── .htaccess ├── favicon.ico ├── files │ ├── bjaillot-dette-technique-v1.3.epub │ ├── bjaillot-dette-technique-v1.3.pdf │ ├── bjaillot-dette-technique.epub │ └── bjaillot-dette-technique.pdf ├── google465bb85d58da561d.html ├── humans.txt ├── keybase.txt ├── robots.txt └── site.webmanifest └── themes └── hugo-journal ├── .scss-lint.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── exampleSite ├── archetypes │ └── default.md ├── config.toml └── content │ └── post │ ├── a-post.md │ ├── another-post.md │ ├── hello-world.md │ └── theme-reference.md ├── images ├── screenshot.png └── tn.png ├── layouts ├── .DS_Store ├── 404.html ├── _default │ ├── archives.html │ ├── baseof.html │ ├── list.html │ └── single.html ├── book-page │ └── single.html ├── index.html ├── page │ └── single.html ├── partials │ ├── footer.html │ ├── head.html │ └── header.html ├── post │ └── single.html └── shortcodes │ ├── comment.html │ └── fig.html ├── scss └── journal.scss ├── static ├── css │ ├── highlight.css │ └── journal.css └── js │ └── highlight.pack.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/config.toml -------------------------------------------------------------------------------- /content/fr/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/00-intro.md -------------------------------------------------------------------------------- /content/fr/01-identifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/01-identifier.md -------------------------------------------------------------------------------- /content/fr/02-prevenir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/02-prevenir.md -------------------------------------------------------------------------------- /content/fr/03-resoudre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/03-resoudre.md -------------------------------------------------------------------------------- /content/fr/04-outro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/04-outro.md -------------------------------------------------------------------------------- /content/fr/05-glossaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/05-glossaire.md -------------------------------------------------------------------------------- /content/fr/06-bibliographie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/06-bibliographie.md -------------------------------------------------------------------------------- /content/fr/07-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/fr/07-about.md -------------------------------------------------------------------------------- /content/images/portrait-bastien-baillot-150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/images/portrait-bastien-baillot-150.jpg -------------------------------------------------------------------------------- /content/images/portrait-bastien-baillot-orig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/images/portrait-bastien-baillot-orig.jpg -------------------------------------------------------------------------------- /content/images/quadrant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/images/quadrant.jpg -------------------------------------------------------------------------------- /content/images/triptyque-prix-qualite-delais.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/content/images/triptyque-prix-qualite-delais.jpg -------------------------------------------------------------------------------- /data/mois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/data/mois.yml -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/layouts/sitemap.xml -------------------------------------------------------------------------------- /static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/.htaccess -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/files/bjaillot-dette-technique-v1.3.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/files/bjaillot-dette-technique-v1.3.epub -------------------------------------------------------------------------------- /static/files/bjaillot-dette-technique-v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/files/bjaillot-dette-technique-v1.3.pdf -------------------------------------------------------------------------------- /static/files/bjaillot-dette-technique.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/files/bjaillot-dette-technique.epub -------------------------------------------------------------------------------- /static/files/bjaillot-dette-technique.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/files/bjaillot-dette-technique.pdf -------------------------------------------------------------------------------- /static/google465bb85d58da561d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/google465bb85d58da561d.html -------------------------------------------------------------------------------- /static/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/humans.txt -------------------------------------------------------------------------------- /static/keybase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/keybase.txt -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /themes/hugo-journal/.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/.scss-lint.yml -------------------------------------------------------------------------------- /themes/hugo-journal/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/Gemfile -------------------------------------------------------------------------------- /themes/hugo-journal/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/Gemfile.lock -------------------------------------------------------------------------------- /themes/hugo-journal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/LICENSE.md -------------------------------------------------------------------------------- /themes/hugo-journal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/README.md -------------------------------------------------------------------------------- /themes/hugo-journal/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/archetypes/default.md -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/config.toml -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/content/post/a-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/content/post/a-post.md -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/content/post/another-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/content/post/another-post.md -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/content/post/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/content/post/hello-world.md -------------------------------------------------------------------------------- /themes/hugo-journal/exampleSite/content/post/theme-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/exampleSite/content/post/theme-reference.md -------------------------------------------------------------------------------- /themes/hugo-journal/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/images/screenshot.png -------------------------------------------------------------------------------- /themes/hugo-journal/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/images/tn.png -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/.DS_Store -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/404.html: -------------------------------------------------------------------------------- 1 | four oh four 2 | -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/_default/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/_default/archives.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/_default/baseof.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/book-page/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/book-page/single.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/index.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/page/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/page/single.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/partials/footer.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/partials/head.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/partials/header.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/post/single.html -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/shortcodes/comment.html: -------------------------------------------------------------------------------- 1 | {{ if .Inner }}{{ end }} 2 | -------------------------------------------------------------------------------- /themes/hugo-journal/layouts/shortcodes/fig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/layouts/shortcodes/fig.html -------------------------------------------------------------------------------- /themes/hugo-journal/scss/journal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/scss/journal.scss -------------------------------------------------------------------------------- /themes/hugo-journal/static/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/static/css/highlight.css -------------------------------------------------------------------------------- /themes/hugo-journal/static/css/journal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/static/css/journal.css -------------------------------------------------------------------------------- /themes/hugo-journal/static/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/static/js/highlight.pack.js -------------------------------------------------------------------------------- /themes/hugo-journal/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastnic/dette-technique-le-livre/HEAD/themes/hugo-journal/theme.toml --------------------------------------------------------------------------------