├── layouts ├── partials │ ├── extra-in-head.html │ ├── disqus.html │ ├── navigation.html │ ├── page-content.html │ ├── page-header.html │ ├── post-content.html │ ├── intro.html │ ├── page-stub.html │ ├── opengraph.html │ ├── pagination.html │ ├── tag-pagination.html │ ├── post-stub.html │ ├── fathom.html │ ├── post-header.html │ ├── exponea.html │ ├── footer.html │ ├── post-footer.html │ └── header.html ├── 404.html ├── page │ └── single.html ├── _default │ ├── single.html │ ├── list.html │ └── rss.xml ├── post │ ├── single.html │ └── list.html ├── tag │ └── list.html └── index.html ├── docs ├── viewerjs │ ├── pdfjsversion.js │ ├── images │ │ ├── nlnet.png │ │ ├── kogmbh.png │ │ ├── texture.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-zoomOut.png │ │ ├── toolbarButton-fullscreen.png │ │ ├── toolbarButton-menuArrows.png │ │ └── toolbarButton-presentation.png │ ├── example.local.css │ └── ui_utils.js ├── favicon.ico ├── img │ ├── bluehats.jpg │ └── bluehats.png ├── fr │ ├── index.html │ └── sitemap.xml ├── page │ ├── 1 │ │ └── index.html │ └── 2 │ │ └── index.html ├── en │ ├── page │ │ └── 1 │ │ │ └── index.html │ ├── tags │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── categories │ │ ├── page │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── index.xml │ ├── sitemap.xml │ ├── 404.html │ └── index.html ├── post │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ └── 2 │ │ │ └── index.html │ └── index.html ├── tags │ ├── page │ │ └── 1 │ │ │ └── index.html │ ├── index.xml │ └── index.html ├── sitemap.xml ├── categories │ ├── page │ │ └── 1 │ │ │ └── index.html │ ├── index.xml │ └── index.html ├── js │ ├── scripts.js │ └── jquery.fitvids.js ├── dist │ ├── syntax.css │ └── site.css ├── 404.html ├── index.html ├── a-propos │ └── index.html └── gazette_bluehat_10 │ └── index.html ├── static ├── viewerjs │ ├── pdfjsversion.js │ ├── images │ │ ├── nlnet.png │ │ ├── kogmbh.png │ │ ├── texture.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-zoomOut.png │ │ ├── toolbarButton-fullscreen.png │ │ ├── toolbarButton-menuArrows.png │ │ └── toolbarButton-presentation.png │ ├── example.local.css │ └── ui_utils.js ├── favicon.ico ├── img │ ├── bluehats.jpg │ └── bluehats.png ├── dist │ ├── fonts │ │ ├── Marianne-Bold.woff │ │ ├── Marianne-Bold.woff2 │ │ ├── Marianne-Regular.woff │ │ ├── Marianne-Regular.woff2 │ │ └── index.css │ └── site.css └── js │ ├── scripts.js │ └── jquery.fitvids.js ├── .gitignore ├── template.org ├── archetypes └── default.md ├── .github ├── ISSUE_TEMPLATE │ ├── annonce-logiciel.md │ ├── cr-evenement.md │ ├── annonce-evenement.md │ └── temoignage.md └── workflows │ └── gh-pages.yml ├── config.toml ├── README.org ├── README.md ├── content ├── a-propos.fr.org └── post │ ├── gazette_bluehat_10.org │ ├── gazette_bluehat_8.org │ └── gazette_bluehat_0.org └── LICENSE.txt /layouts/partials/extra-in-head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/viewerjs/pdfjsversion.js: -------------------------------------------------------------------------------- 1 | var /**@const{!string}*/pdfjs_version = "v1.1.114"; 2 | -------------------------------------------------------------------------------- /static/viewerjs/pdfjsversion.js: -------------------------------------------------------------------------------- 1 | var /**@const{!string}*/pdfjs_version = "v1.1.114"; 2 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /docs/img/bluehats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/img/bluehats.jpg -------------------------------------------------------------------------------- /docs/img/bluehats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/img/bluehats.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *odt 2 | *pdf 3 | wip/ 4 | public/ 5 | docs/ 6 | content/post/*html 7 | content/post/*css 8 | -------------------------------------------------------------------------------- /static/img/bluehats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/img/bluehats.jpg -------------------------------------------------------------------------------- /static/img/bluehats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/img/bluehats.png -------------------------------------------------------------------------------- /docs/viewerjs/images/nlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/nlnet.png -------------------------------------------------------------------------------- /docs/viewerjs/images/kogmbh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/kogmbh.png -------------------------------------------------------------------------------- /docs/viewerjs/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/texture.png -------------------------------------------------------------------------------- /static/viewerjs/images/nlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/nlnet.png -------------------------------------------------------------------------------- /static/viewerjs/images/kogmbh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/kogmbh.png -------------------------------------------------------------------------------- /static/viewerjs/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/texture.png -------------------------------------------------------------------------------- /template.org: -------------------------------------------------------------------------------- 1 | #+title: Title 2 | #+date: YYYY-MM-DD 3 | #+author: Bastien 4 | #+layout: post 5 | #+draft: true 6 | #+tags: 7 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /static/dist/fonts/Marianne-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/dist/fonts/Marianne-Bold.woff -------------------------------------------------------------------------------- /static/dist/fonts/Marianne-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/dist/fonts/Marianne-Bold.woff2 -------------------------------------------------------------------------------- /static/dist/fonts/Marianne-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/dist/fonts/Marianne-Regular.woff -------------------------------------------------------------------------------- /static/dist/fonts/Marianne-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/dist/fonts/Marianne-Regular.woff2 -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-download.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-fullscreen.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-download.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /docs/viewerjs/images/toolbarButton-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/docs/viewerjs/images/toolbarButton-presentation.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-fullscreen.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /static/viewerjs/images/toolbarButton-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISIC/gazette-bluehats/HEAD/static/viewerjs/images/toolbarButton-presentation.png -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.DisqusShortname }} 2 |
{{ .Description }}
5 | {{ end }} 6 |{{ .Site.Params.description }}
5 |Oh, this page does not exist. You can head back to homepage.
6 |{{ .Description }}
6 | {{ end }} 7 | {{ with .Params.featured }} 8 | Featured 9 | {{ end }} 10 | 11 |{{ .Description }}
5 | {{ end }} 6 |7 | Publiée 8 | par 9 | 10 | 11 | {{ .Params.author | default .Site.Author.name }} 12 | 13 | 14 |
15 | {{ if .Site.Params.readingTime }} 16 |17 | {{ .Site.Params.readingTimeText }} {{ .Page.ReadingTime }} min 18 |
19 | {{ end }} 20 |