├── README.md ├── deck └── .gitkeep ├── metadata.yml ├── resources ├── Config Status.png ├── DevSecOps Pipeline.png ├── DevSecOps on AWS.xml ├── Inspector Findings.png ├── Pipeline Execution.png ├── code │ └── .gitkeep ├── policies │ └── .gitkeep ├── templates │ └── .gitkeep └── tools.png └── workshop ├── .DS_Store ├── buildspec.yml ├── config.toml ├── content ├── .DS_Store ├── _index.md ├── cfn-nag │ └── _index.md ├── clone │ └── _index.md ├── conclusion │ └── _index.md ├── config │ ├── _index.md │ ├── rules │ │ └── _index.md │ ├── soak │ │ └── _index.md │ └── works │ │ └── _index.md ├── introduction │ └── _index.md ├── launch │ └── _index.md ├── secrets │ └── _index.md ├── taskcat │ └── _index.md └── validate │ └── _index.md ├── layouts ├── .DS_Store ├── _default │ └── _markup │ │ └── render-link.html ├── index.json └── partials │ └── custom-footer.html ├── post_build.py ├── pre_build.py ├── public ├── 404.html ├── categories.html ├── categories │ └── index.xml ├── cfn-nag.html ├── cfn-nag │ └── index.xml ├── clone.html ├── clone │ └── index.xml ├── conclusion.html ├── conclusion │ └── index.xml ├── config.html ├── config │ ├── index.xml │ ├── rules.html │ ├── rules │ │ └── index.xml │ ├── soak.html │ ├── soak │ │ └── index.xml │ ├── works.html │ └── works │ │ └── index.xml ├── css │ ├── atom-one-dark-reasonable.css │ ├── auto-complete.css │ ├── featherlight.min.css │ ├── fontawesome-all.min.css │ ├── hugo-theme.css │ ├── hybrid.css │ ├── nucleus.css │ ├── perfect-scrollbar.min.css │ ├── tags.css │ ├── theme-aws.css │ ├── theme-blue.css │ ├── theme-green.css │ ├── theme-red.css │ └── theme.css ├── detective.html ├── detective │ └── index.xml ├── fonts │ ├── Inconsolata.eot │ ├── Inconsolata.svg │ ├── Inconsolata.ttf │ ├── Inconsolata.woff │ ├── Novecentosanswide-Normal-webfont.eot │ ├── Novecentosanswide-Normal-webfont.svg │ ├── Novecentosanswide-Normal-webfont.ttf │ ├── Novecentosanswide-Normal-webfont.woff │ ├── Novecentosanswide-Normal-webfont.woff2 │ ├── Novecentosanswide-UltraLight-webfont.eot │ ├── Novecentosanswide-UltraLight-webfont.svg │ ├── Novecentosanswide-UltraLight-webfont.ttf │ ├── Novecentosanswide-UltraLight-webfont.woff │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ ├── Work_Sans_200.eot │ ├── Work_Sans_200.svg │ ├── Work_Sans_200.ttf │ ├── Work_Sans_200.woff │ ├── Work_Sans_200.woff2 │ ├── Work_Sans_300.eot │ ├── Work_Sans_300.svg │ ├── Work_Sans_300.ttf │ ├── Work_Sans_300.woff │ ├── Work_Sans_300.woff2 │ ├── Work_Sans_500.eot │ ├── Work_Sans_500.svg │ ├── Work_Sans_500.ttf │ ├── Work_Sans_500.woff │ └── Work_Sans_500.woff2 ├── images │ ├── action-failed-1.png │ ├── apn-logo.jpg │ ├── approve.png │ ├── architecture.png │ ├── aws-open-source.jpg │ ├── clippy.svg │ ├── completed.png │ ├── compliant.png │ ├── config.png │ ├── default-sg.png │ ├── devsecopspipeline.png │ ├── ee_dashboard.png │ ├── ee_dashboard2.png │ ├── login2.png │ ├── login3.png │ ├── logo.png │ ├── non-compliant.png │ ├── pipeline-failed-1.png │ ├── soaktest.png │ ├── taillogs-1.png │ ├── taillogs-2.png │ └── taillogs-3.png ├── index.html ├── index.json ├── index.xml ├── introduction.html ├── introduction │ └── index.xml ├── js │ ├── auto-complete.js │ ├── clipboard.min.js │ ├── featherlight.min.js │ ├── highlight.pack.js │ ├── html5shiv-printshiv.min.js │ ├── hugo-learn.js │ ├── jquery-3.3.1.min.js │ ├── jquery.sticky.js │ ├── learn.js │ ├── lunr.min.js │ ├── modernizr.custom-3.6.0.js │ ├── perfect-scrollbar.jquery.min.js │ ├── perfect-scrollbar.min.js │ └── search.js ├── launch.html ├── launch │ └── index.xml ├── mermaid │ ├── mermaid.css │ ├── mermaid.dark.css │ ├── mermaid.forest.css │ └── mermaid.js ├── secrets.html ├── secrets │ └── index.xml ├── sitemap.xml ├── tags.html ├── tags │ └── index.xml ├── taskcat.html ├── taskcat │ └── index.xml ├── validate.html ├── validate │ └── index.xml └── webfonts │ ├── AmazonEmberCd_W_Bd.eot │ ├── AmazonEmberCd_W_Bd.woff │ ├── AmazonEmberCd_W_Bd.woff2 │ ├── AmazonEmberCd_W_BdIt.eot │ ├── AmazonEmberCd_W_BdIt.woff │ ├── AmazonEmberCd_W_BdIt.woff2 │ ├── AmazonEmberCd_W_Lt.eot │ ├── AmazonEmberCd_W_Lt.woff │ ├── AmazonEmberCd_W_Lt.woff2 │ ├── AmazonEmberCd_W_LtIt.eot │ ├── AmazonEmberCd_W_LtIt.woff │ ├── AmazonEmberCd_W_LtIt.woff2 │ ├── AmazonEmberCd_W_Rg.eot │ ├── AmazonEmberCd_W_Rg.woff │ ├── AmazonEmberCd_W_Rg.woff2 │ ├── AmazonEmberCd_W_RgIt.eot │ ├── AmazonEmberCd_W_RgIt.woff │ ├── AmazonEmberCd_W_RgIt.woff2 │ ├── AmazonEmberCd_W_Th.eot │ ├── AmazonEmberCd_W_Th.woff │ ├── AmazonEmberCd_W_Th.woff2 │ ├── AmazonEmberCd_W_ThIt.eot │ ├── AmazonEmberCd_W_ThIt.woff │ ├── AmazonEmberCd_W_ThIt.woff2 │ ├── AmazonEmberDisplay_W_Bd.eot │ ├── AmazonEmberDisplay_W_Bd.woff │ ├── AmazonEmberDisplay_W_Bd.woff2 │ ├── AmazonEmberDisplay_W_He.eot │ ├── AmazonEmberDisplay_W_He.woff │ ├── AmazonEmberDisplay_W_He.woff2 │ ├── AmazonEmberDisplay_W_Lt.eot │ ├── AmazonEmberDisplay_W_Lt.woff │ ├── AmazonEmberDisplay_W_Lt.woff2 │ ├── AmazonEmberDisplay_W_Md.eot │ ├── AmazonEmberDisplay_W_Md.woff │ ├── AmazonEmberDisplay_W_Md.woff2 │ ├── AmazonEmberDisplay_W_Rg.eot │ ├── AmazonEmberDisplay_W_Rg.woff │ ├── AmazonEmberDisplay_W_Rg.woff2 │ ├── AmazonEmberDuospace_W_Bd.eot │ ├── AmazonEmberDuospace_W_Bd.woff │ ├── AmazonEmberDuospace_W_Bd.woff2 │ ├── AmazonEmberDuospace_W_Rg.eot │ ├── AmazonEmberDuospace_W_Rg.woff │ ├── AmazonEmberDuospace_W_Rg.woff2 │ ├── AmazonEmberMono_W_Bd.eot │ ├── AmazonEmberMono_W_Bd.woff │ ├── AmazonEmberMono_W_Bd.woff2 │ ├── AmazonEmberMono_W_Rg.eot │ ├── AmazonEmberMono_W_Rg.woff │ ├── AmazonEmberMono_W_Rg.woff2 │ ├── AmazonEmber_W_Bd.eot │ ├── AmazonEmber_W_Bd.woff │ ├── AmazonEmber_W_Bd.woff2 │ ├── AmazonEmber_W_BdIt.eot │ ├── AmazonEmber_W_BdIt.woff │ ├── AmazonEmber_W_BdIt.woff2 │ ├── AmazonEmber_W_He.eot │ ├── AmazonEmber_W_He.woff │ ├── AmazonEmber_W_He.woff2 │ ├── AmazonEmber_W_HeIt.eot │ ├── AmazonEmber_W_HeIt.woff │ ├── AmazonEmber_W_HeIt.woff2 │ ├── AmazonEmber_W_Lt.eot │ ├── AmazonEmber_W_Lt.woff │ ├── AmazonEmber_W_Lt.woff2 │ ├── AmazonEmber_W_LtIt.eot │ ├── AmazonEmber_W_LtIt.woff │ ├── AmazonEmber_W_LtIt.woff2 │ ├── AmazonEmber_W_Rg.eot │ ├── AmazonEmber_W_Rg.woff │ ├── AmazonEmber_W_Rg.woff2 │ ├── AmazonEmber_W_RgIt.eot │ ├── AmazonEmber_W_RgIt.woff │ ├── AmazonEmber_W_RgIt.woff2 │ ├── AmazonEmber_W_SBd.eot │ ├── AmazonEmber_W_SBd.woff │ ├── AmazonEmber_W_SBd.woff2 │ ├── AmazonEmber_W_SBdIt.eot │ ├── AmazonEmber_W_SBdIt.woff │ ├── AmazonEmber_W_SBdIt.woff2 │ ├── AmazonEmber_W_Th.eot │ ├── AmazonEmber_W_Th.woff │ ├── AmazonEmber_W_Th.woff2 │ ├── AmazonEmber_W_ThIt.eot │ ├── AmazonEmber_W_ThIt.woff │ ├── AmazonEmber_W_ThIt.woff2 │ ├── BookerlyDisplay_W_Bd.eot │ ├── BookerlyDisplay_W_Bd.woff │ ├── BookerlyDisplay_W_Bd.woff2 │ ├── BookerlyDisplay_W_BdIt.eot │ ├── BookerlyDisplay_W_BdIt.woff │ ├── BookerlyDisplay_W_BdIt.woff2 │ ├── BookerlyDisplay_W_It.eot │ ├── BookerlyDisplay_W_It.woff │ ├── BookerlyDisplay_W_It.woff2 │ ├── BookerlyDisplay_W_Rg.eot │ ├── BookerlyDisplay_W_Rg.woff │ ├── BookerlyDisplay_W_Rg.woff2 │ ├── BookerlyLCD_W_Bd.eot │ ├── BookerlyLCD_W_Bd.woff │ ├── BookerlyLCD_W_Bd.woff2 │ ├── BookerlyLCD_W_BdIt.eot │ ├── BookerlyLCD_W_BdIt.woff │ ├── BookerlyLCD_W_BdIt.woff2 │ ├── BookerlyLCD_W_Lt.eot │ ├── BookerlyLCD_W_Lt.woff │ ├── BookerlyLCD_W_Lt.woff2 │ ├── BookerlyLCD_W_LtIt.eot │ ├── BookerlyLCD_W_LtIt.woff │ ├── BookerlyLCD_W_LtIt.woff2 │ ├── BookerlyLCD_W_Rg.eot │ ├── BookerlyLCD_W_Rg.woff │ ├── BookerlyLCD_W_Rg.woff2 │ ├── BookerlyLCD_W_RgIt.eot │ ├── BookerlyLCD_W_RgIt.woff │ ├── BookerlyLCD_W_RgIt.woff2 │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── requirements.txt ├── resources ├── .DS_Store └── _gen │ └── .DS_Store ├── static ├── .DS_Store ├── images │ ├── action-failed-1.png │ ├── apn-logo.jpg │ ├── approve.png │ ├── architecture.png │ ├── aws-open-source.jpg │ ├── chapter.en.png │ ├── completed.png │ ├── compliant.png │ ├── config.png │ ├── default-sg.png │ ├── devsecopspipeline.png │ ├── ee_dashboard.png │ ├── ee_dashboard2.png │ ├── login2.png │ ├── login3.png │ ├── non-compliant.png │ ├── pipeline-failed-1.png │ ├── soaktest.png │ ├── taillogs-1.png │ ├── taillogs-2.png │ └── taillogs-3.png └── js │ └── kinesis.js └── themes ├── .DS_Store └── learn ├── .editorconfig ├── .gitignore ├── .grenrc.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── archetypes ├── chapter.md └── default.md ├── exampleSite ├── LICENSE.md ├── config.toml ├── content │ ├── _index.en.md │ ├── _index.fr.md │ ├── basics │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── configuration │ │ │ ├── _index.en.md │ │ │ └── _index.fr.md │ │ ├── installation │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── chapter.png │ │ ├── requirements │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── magic.gif │ │ └── style-customization │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ ├── blue-variant.png │ │ │ ├── green-variant.png │ │ │ └── red-variant.png │ ├── cont │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── archetypes.en.md │ │ ├── archetypes.fr.md │ │ ├── i18n │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── i18n-menu.gif │ │ ├── icons.en.md │ │ ├── markdown.en.md │ │ ├── markdown.fr.md │ │ ├── menushortcuts.en.md │ │ ├── menushortcuts.fr.md │ │ ├── pages │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ ├── frontmatter-icon.png │ │ │ │ ├── pages-chapter.png │ │ │ │ └── pages-default.png │ │ ├── tags.en.md │ │ └── tags.fr.md │ ├── credits.en.md │ ├── credits.fr.md │ ├── shortcodes │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── attachments.en.files │ │ │ ├── BachGavotteShort.mp3 │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ ├── hugo.png │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ ├── attachments.en.md │ │ ├── attachments.fr.files │ │ │ ├── BachGavotteShort.mp3 │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ ├── hugo.png │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ ├── attachments.fr.md │ │ ├── button.en.md │ │ ├── button.fr.md │ │ ├── children │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ ├── children-1 │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ └── children-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ └── _index.fr.md │ │ │ ├── children-2 │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ ├── test3.en.md │ │ │ │ └── test3.fr.md │ │ │ ├── children-3 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.fr.md │ │ │ ├── children-4 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.fr.md │ │ │ ├── test.en.md │ │ │ └── test.fr.md │ │ ├── expand.en.md │ │ ├── expand.fr.md │ │ ├── mermaid.en.md │ │ ├── mermaid.fr.md │ │ ├── notice.en.md │ │ ├── notice.fr.md │ │ ├── siteparam.en.md │ │ └── siteparam.fr.md │ ├── showcase.en.md │ └── showcase.fr.md ├── layouts │ ├── partials │ │ ├── custom-footer.html │ │ ├── logo.html │ │ └── menu-footer.html │ └── shortcodes │ │ └── ghcontributors.html └── static │ ├── css │ └── theme-mine.css │ ├── fonts │ ├── monogramos-webfont.eot │ ├── monogramos-webfont.svg │ ├── monogramos-webfont.ttf │ ├── monogramos-webfont.woff │ └── monogramos-webfont.woff2 │ └── images │ └── showcase │ └── tat.png ├── i18n ├── ar.toml ├── de.toml ├── en.toml ├── es.toml ├── fr.toml ├── hi.toml ├── id.toml ├── nl.toml ├── pt.toml └── tr.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ └── single.html ├── index.html ├── index.json ├── partials │ ├── custom-comments.html │ ├── custom-footer.html │ ├── custom-header.html │ ├── favicon.html │ ├── footer.html │ ├── header.html │ ├── logo.html │ ├── menu-footer.html │ ├── menu.html │ ├── meta.html │ ├── search.html │ ├── tags.html │ └── toc.html └── shortcodes │ ├── attachments.html │ ├── button.html │ ├── children.html │ ├── expand.html │ ├── img.html │ ├── mermaid.html │ ├── notice.html │ ├── ref.html │ ├── relref.html │ ├── siteparam.html │ └── siteurl.html ├── static ├── css │ ├── atom-one-dark-reasonable.css │ ├── auto-complete.css │ ├── featherlight.min.css │ ├── fontawesome-all.min.css │ ├── hugo-theme.css │ ├── hybrid.css │ ├── nucleus.css │ ├── perfect-scrollbar.min.css │ ├── tags.css │ ├── theme-aws.css │ ├── theme-blue.css │ ├── theme-green.css │ ├── theme-red.css │ └── theme.css ├── fonts │ ├── Inconsolata.eot │ ├── Inconsolata.svg │ ├── Inconsolata.ttf │ ├── Inconsolata.woff │ ├── Novecentosanswide-Normal-webfont.eot │ ├── Novecentosanswide-Normal-webfont.svg │ ├── Novecentosanswide-Normal-webfont.ttf │ ├── Novecentosanswide-Normal-webfont.woff │ ├── Novecentosanswide-Normal-webfont.woff2 │ ├── Novecentosanswide-UltraLight-webfont.eot │ ├── Novecentosanswide-UltraLight-webfont.svg │ ├── Novecentosanswide-UltraLight-webfont.ttf │ ├── Novecentosanswide-UltraLight-webfont.woff │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ ├── Work_Sans_200.eot │ ├── Work_Sans_200.svg │ ├── Work_Sans_200.ttf │ ├── Work_Sans_200.woff │ ├── Work_Sans_200.woff2 │ ├── Work_Sans_300.eot │ ├── Work_Sans_300.svg │ ├── Work_Sans_300.ttf │ ├── Work_Sans_300.woff │ ├── Work_Sans_300.woff2 │ ├── Work_Sans_500.eot │ ├── Work_Sans_500.svg │ ├── Work_Sans_500.ttf │ ├── Work_Sans_500.woff │ └── Work_Sans_500.woff2 ├── images │ ├── clippy.svg │ └── logo.png ├── js │ ├── auto-complete.js │ ├── clipboard.min.js │ ├── featherlight.min.js │ ├── highlight.pack.js │ ├── html5shiv-printshiv.min.js │ ├── hugo-learn.js │ ├── jquery-3.3.1.min.js │ ├── jquery.sticky.js │ ├── learn.js │ ├── lunr.min.js │ ├── modernizr.custom-3.6.0.js │ ├── perfect-scrollbar.jquery.min.js │ ├── perfect-scrollbar.min.js │ └── search.js ├── mermaid │ ├── mermaid.css │ ├── mermaid.dark.css │ ├── mermaid.forest.css │ └── mermaid.js └── webfonts │ ├── AmazonEmberCd_W_Bd.eot │ ├── AmazonEmberCd_W_Bd.woff │ ├── AmazonEmberCd_W_Bd.woff2 │ ├── AmazonEmberCd_W_BdIt.eot │ ├── AmazonEmberCd_W_BdIt.woff │ ├── AmazonEmberCd_W_BdIt.woff2 │ ├── AmazonEmberCd_W_Lt.eot │ ├── AmazonEmberCd_W_Lt.woff │ ├── AmazonEmberCd_W_Lt.woff2 │ ├── AmazonEmberCd_W_LtIt.eot │ ├── AmazonEmberCd_W_LtIt.woff │ ├── AmazonEmberCd_W_LtIt.woff2 │ ├── AmazonEmberCd_W_Rg.eot │ ├── AmazonEmberCd_W_Rg.woff │ ├── AmazonEmberCd_W_Rg.woff2 │ ├── AmazonEmberCd_W_RgIt.eot │ ├── AmazonEmberCd_W_RgIt.woff │ ├── AmazonEmberCd_W_RgIt.woff2 │ ├── AmazonEmberCd_W_Th.eot │ ├── AmazonEmberCd_W_Th.woff │ ├── AmazonEmberCd_W_Th.woff2 │ ├── AmazonEmberCd_W_ThIt.eot │ ├── AmazonEmberCd_W_ThIt.woff │ ├── AmazonEmberCd_W_ThIt.woff2 │ ├── AmazonEmberDisplay_W_Bd.eot │ ├── AmazonEmberDisplay_W_Bd.woff │ ├── AmazonEmberDisplay_W_Bd.woff2 │ ├── AmazonEmberDisplay_W_He.eot │ ├── AmazonEmberDisplay_W_He.woff │ ├── AmazonEmberDisplay_W_He.woff2 │ ├── AmazonEmberDisplay_W_Lt.eot │ ├── AmazonEmberDisplay_W_Lt.woff │ ├── AmazonEmberDisplay_W_Lt.woff2 │ ├── AmazonEmberDisplay_W_Md.eot │ ├── AmazonEmberDisplay_W_Md.woff │ ├── AmazonEmberDisplay_W_Md.woff2 │ ├── AmazonEmberDisplay_W_Rg.eot │ ├── AmazonEmberDisplay_W_Rg.woff │ ├── AmazonEmberDisplay_W_Rg.woff2 │ ├── AmazonEmberDuospace_W_Bd.eot │ ├── AmazonEmberDuospace_W_Bd.woff │ ├── AmazonEmberDuospace_W_Bd.woff2 │ ├── AmazonEmberDuospace_W_Rg.eot │ ├── AmazonEmberDuospace_W_Rg.woff │ ├── AmazonEmberDuospace_W_Rg.woff2 │ ├── AmazonEmberMono_W_Bd.eot │ ├── AmazonEmberMono_W_Bd.woff │ ├── AmazonEmberMono_W_Bd.woff2 │ ├── AmazonEmberMono_W_Rg.eot │ ├── AmazonEmberMono_W_Rg.woff │ ├── AmazonEmberMono_W_Rg.woff2 │ ├── AmazonEmber_W_Bd.eot │ ├── AmazonEmber_W_Bd.woff │ ├── AmazonEmber_W_Bd.woff2 │ ├── AmazonEmber_W_BdIt.eot │ ├── AmazonEmber_W_BdIt.woff │ ├── AmazonEmber_W_BdIt.woff2 │ ├── AmazonEmber_W_He.eot │ ├── AmazonEmber_W_He.woff │ ├── AmazonEmber_W_He.woff2 │ ├── AmazonEmber_W_HeIt.eot │ ├── AmazonEmber_W_HeIt.woff │ ├── AmazonEmber_W_HeIt.woff2 │ ├── AmazonEmber_W_Lt.eot │ ├── AmazonEmber_W_Lt.woff │ ├── AmazonEmber_W_Lt.woff2 │ ├── AmazonEmber_W_LtIt.eot │ ├── AmazonEmber_W_LtIt.woff │ ├── AmazonEmber_W_LtIt.woff2 │ ├── AmazonEmber_W_Rg.eot │ ├── AmazonEmber_W_Rg.woff │ ├── AmazonEmber_W_Rg.woff2 │ ├── AmazonEmber_W_RgIt.eot │ ├── AmazonEmber_W_RgIt.woff │ ├── AmazonEmber_W_RgIt.woff2 │ ├── AmazonEmber_W_SBd.eot │ ├── AmazonEmber_W_SBd.woff │ ├── AmazonEmber_W_SBd.woff2 │ ├── AmazonEmber_W_SBdIt.eot │ ├── AmazonEmber_W_SBdIt.woff │ ├── AmazonEmber_W_SBdIt.woff2 │ ├── AmazonEmber_W_Th.eot │ ├── AmazonEmber_W_Th.woff │ ├── AmazonEmber_W_Th.woff2 │ ├── AmazonEmber_W_ThIt.eot │ ├── AmazonEmber_W_ThIt.woff │ ├── AmazonEmber_W_ThIt.woff2 │ ├── BookerlyDisplay_W_Bd.eot │ ├── BookerlyDisplay_W_Bd.woff │ ├── BookerlyDisplay_W_Bd.woff2 │ ├── BookerlyDisplay_W_BdIt.eot │ ├── BookerlyDisplay_W_BdIt.woff │ ├── BookerlyDisplay_W_BdIt.woff2 │ ├── BookerlyDisplay_W_It.eot │ ├── BookerlyDisplay_W_It.woff │ ├── BookerlyDisplay_W_It.woff2 │ ├── BookerlyDisplay_W_Rg.eot │ ├── BookerlyDisplay_W_Rg.woff │ ├── BookerlyDisplay_W_Rg.woff2 │ ├── BookerlyLCD_W_Bd.eot │ ├── BookerlyLCD_W_Bd.woff │ ├── BookerlyLCD_W_Bd.woff2 │ ├── BookerlyLCD_W_BdIt.eot │ ├── BookerlyLCD_W_BdIt.woff │ ├── BookerlyLCD_W_BdIt.woff2 │ ├── BookerlyLCD_W_Lt.eot │ ├── BookerlyLCD_W_Lt.woff │ ├── BookerlyLCD_W_Lt.woff2 │ ├── BookerlyLCD_W_LtIt.eot │ ├── BookerlyLCD_W_LtIt.woff │ ├── BookerlyLCD_W_LtIt.woff2 │ ├── BookerlyLCD_W_Rg.eot │ ├── BookerlyLCD_W_Rg.woff │ ├── BookerlyLCD_W_Rg.woff2 │ ├── BookerlyLCD_W_RgIt.eot │ ├── BookerlyLCD_W_RgIt.woff │ ├── BookerlyLCD_W_RgIt.woff2 │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── theme.toml /deck/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/deck/.gitkeep -------------------------------------------------------------------------------- /metadata.yml: -------------------------------------------------------------------------------- 1 | #name - DNS-friendly name for the workshop. This will be used when generating the hosting URL (ie. https://my-first-workshop.workshops.aws/) 2 | name: my-first-workshop 3 | #title - The title of your workshop 4 | title: My First Workshop 5 | #description - A short description that will be displayed in search results 6 | description: Creating unicorns with serverless bitcoin magic! 7 | #categories - Refer to official AWS categories covered by the workshop content here 8 | categories: 9 | - Networking 10 | - Compute 11 | #services - Refer to the official AWS service names covered by the workshop content here 12 | services: 13 | - Api Gateway 14 | - Lambda 15 | #level - Approximate skill level needed for this workshop 16 | level: 100 17 | #duration - Estimated duration in minutes 18 | duration: 60 19 | #cost - Cost in USD. If the content is offered without cost, enter 0 20 | cost: 0 21 | #author - Amazon alias of the primary author of the content 22 | author: mpgoetz 23 | #audience - Names of the personas associated with this workshop 24 | audience: 25 | - IT Professional 26 | - Developer -------------------------------------------------------------------------------- /resources/Config Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/Config Status.png -------------------------------------------------------------------------------- /resources/DevSecOps Pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/DevSecOps Pipeline.png -------------------------------------------------------------------------------- /resources/Inspector Findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/Inspector Findings.png -------------------------------------------------------------------------------- /resources/Pipeline Execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/Pipeline Execution.png -------------------------------------------------------------------------------- /resources/code/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/code/.gitkeep -------------------------------------------------------------------------------- /resources/policies/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/policies/.gitkeep -------------------------------------------------------------------------------- /resources/templates/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/templates/.gitkeep -------------------------------------------------------------------------------- /resources/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/resources/tools.png -------------------------------------------------------------------------------- /workshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/.DS_Store -------------------------------------------------------------------------------- /workshop/buildspec.yml: -------------------------------------------------------------------------------- 1 | version: 0.2 2 | phases: 3 | install: 4 | runtime-versions: 5 | golang: 1.12 6 | nodejs: 10 7 | commands: 8 | - echo Entered the install phase... 9 | - apt-get -qq update && apt-get -qq install curl 10 | - apt-get -qq install asciidoctor 11 | - curl -s -L https://github.com/gohugoio/hugo/releases/download/v0.55.6/hugo_0.55.6_Linux-64bit.deb -o hugo.deb 12 | - dpkg -i hugo.deb 13 | finally: 14 | - echo Installation done 15 | build: 16 | commands: 17 | - echo Entered the build phase ... 18 | - echo Build started on `date` 19 | - cd $CODEBUILD_SRC_DIR/workshop 20 | - hugo --quiet 21 | finally: 22 | - echo Building the HTML files finished 23 | artifacts: 24 | files: 25 | - "**/*" 26 | base-directory: $CODEBUILD_SRC_DIR/workshop/public/ 27 | discard-paths: no -------------------------------------------------------------------------------- /workshop/config.toml: -------------------------------------------------------------------------------- 1 | RelativeURLs=true 2 | CanonifyURLs=true 3 | languageCode = "en-US" 4 | defaultContentLanguage = "en" 5 | 6 | title = "My AWS Workshop" 7 | theme = "learn" 8 | metaDataFormat = "yaml" 9 | defaultContentLanguageInSubdir= true 10 | 11 | uglyurls = true 12 | sectionPagesMenu = "main" 13 | pygmentsCodeFences = true 14 | pygmentsStyle = "monokai" 15 | 16 | [params] 17 | description = "My AWS Workshop" 18 | author = "Jane Architect" 19 | disableBreadcrumb = false 20 | disableNextPrev = false 21 | themeVariant = "aws" 22 | disableSearch = false 23 | disableAssetsBusting = true 24 | disableLanguageSwitchingButton = false 25 | disableShortcutsTitle = true 26 | disableInlineCopyToClipBoard = true 27 | 28 | [outputs] 29 | home = [ "HTML", "RSS", "JSON"] 30 | 31 | [markup] 32 | defaultMarkdownHandler = "goldmark" 33 | [markup.goldmark] 34 | [markup.goldmark.renderer] 35 | unsafe = true 36 | 37 | [Languages] 38 | [Languages.en] 39 | title = "My AWS Workshop" 40 | weight = 1 41 | languageName = "English" 42 | 43 | [Languages.fr] 44 | title = "Mon atelier AWS" 45 | weight = 2 46 | languageName = "Français" -------------------------------------------------------------------------------- /workshop/content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/content/.DS_Store -------------------------------------------------------------------------------- /workshop/content/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "DevSecOps on AWS" 3 | chapter = true 4 | weight = 1 5 | +++ 6 | 7 | In this workshop we will build a pipeline for a sample WordPress site in a stack. We will explore how to validate, lint and test templates, and dive deeper in tools that help you enforce compliance and network analysis, together with your development pipeline, for a full DevSecOps CI/CD. 8 | 9 | ![architecture](/images/architecture.png) -------------------------------------------------------------------------------- /workshop/content/conclusion/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Conclusion and Clean Up" 3 | date = 2019-10-30T17:50:15-07:00 4 | weight = 100 5 | chapter = true 6 | pre = " " 7 | +++ 8 | 9 | ![completed](/images/completed.png) 10 | 11 | It's done! We managed to deploy our Wordpress stack making sure we have security in our development pipeline. To get started building your DevSecOps approach, take a step back and ask yourself, “What am I trying to accomplish, and what security controls are needed?”. This step helps you create a focused use case, and from there, you can identify options for security tools, automation requirements, and organizational roles and processes that you need to address. Finally, include an audit, logging, and monitoring solution in your production environment that combines account activity and AWS resources from AWS CloudTrail and AWS CloudWatch with data on security incidents to provide ongoing insights, as well as other controls, such as Identity and Access Management (IAM) and network security. 12 | 13 | To cleanup the resources, destroy the CloudFormation template in your account and the CodeCommit repository: 14 | 15 | ```bash 16 | aws cloudformation delete-stack --stack-name devsecops-wordpress-pipeline 17 | aws codecommit delete-repository --repository-name wordpress-cfn 18 | ``` -------------------------------------------------------------------------------- /workshop/content/config/soak/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Soak Testing Environment" 3 | date = 2020-05-29T14:15:42+01:00 4 | weight = 40 5 | chapter = true 6 | pre = " " 7 | +++ 8 | 9 | We confugred AWS Config rules in our test environment, which represent our ideal configuration settings. The current rule we are using, `vpc-default-security-group-closed`, checks that the default security group of any VPC does not allow inbound or outbound traffic. If we navigate to the [AWS Config console](https://eu-west-1.console.aws.amazon.com/config/home?region=eu-west-1&awsc-custsat-override=promptUser#/dashboard) we can see our non-compliant rule: 10 | 11 | ![non-compliant](/images/non-compliant.png) 12 | 13 | Our default security group is too permissive. Let's close it down. 14 | Fisrt, click on the security group ID to go to the VPC Management Console. The default security groups looks something like this: 15 | 16 | ![compliant](/images/default-sg.png) 17 | 18 | Click on "Edit inbound rules" and delete the rule. After this, do the same for the Outbound rules. Going back to the Config console, click on "Re-evaluate" and watch the rule become compliant! 19 | 20 | ![compliant](/images/compliant.png) 21 | 22 | We are now ready to approve our commit to production. 23 | 24 | ![approve](/images/approve.png) -------------------------------------------------------------------------------- /workshop/layouts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/layouts/.DS_Store -------------------------------------------------------------------------------- /workshop/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- 1 | {{ .Text | safeHTML }} -------------------------------------------------------------------------------- /workshop/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /workshop/public/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on DevSecOps on AWS 5 | /categories.html 6 | Recent content in Categories on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | 10 | 11 | -------------------------------------------------------------------------------- /workshop/public/cfn-nag/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Linting a Template on DevSecOps on AWS 5 | /cfn-nag.html 6 | Recent content in Linting a Template on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 15 Apr 2020 14:32:10 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/clone/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Clone Repository on DevSecOps on AWS 5 | /clone.html 6 | Recent content in Clone Repository on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Fri, 01 Nov 2019 16:13:49 -0700 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/conclusion/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Conclusion and Clean Up on DevSecOps on AWS 5 | /conclusion.html 6 | Recent content in Conclusion and Clean Up on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 30 Oct 2019 17:50:15 -0700 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/config/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Enforcing Compliance on DevSecOps on AWS 5 | /config.html 6 | Recent content in Enforcing Compliance on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 15 Apr 2020 14:34:35 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/config/rules/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Evaluating Resources with Rules on DevSecOps on AWS 5 | /config/rules.html 6 | Recent content in Evaluating Resources with Rules on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 27 May 2020 13:43:07 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/config/soak/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Soak Testing Environment on DevSecOps on AWS 5 | /config/soak.html 6 | Recent content in Soak Testing Environment on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Fri, 29 May 2020 14:15:42 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/config/works/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | How AWS Config Works on DevSecOps on AWS 5 | /config/works.html 6 | Recent content in How AWS Config Works on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 27 May 2020 13:39:21 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/css/auto-complete.css: -------------------------------------------------------------------------------- 1 | .autocomplete-suggestions { 2 | text-align: left; 3 | cursor: default; 4 | border: 1px solid #ccc; 5 | border-top: 0; 6 | background: #fff; 7 | box-shadow: -1px 1px 3px rgba(0,0,0,.1); 8 | 9 | /* core styles should not be changed */ 10 | position: absolute; 11 | display: none; 12 | z-index: 9999; 13 | max-height: 254px; 14 | overflow: hidden; 15 | overflow-y: auto; 16 | box-sizing: border-box; 17 | 18 | } 19 | .autocomplete-suggestion { 20 | position: relative; 21 | cursor: pointer; 22 | padding: 7px; 23 | line-height: 23px; 24 | white-space: nowrap; 25 | overflow: hidden; 26 | text-overflow: ellipsis; 27 | color: #333; 28 | } 29 | 30 | .autocomplete-suggestion b { 31 | font-weight: normal; 32 | color: #1f8dd6; 33 | } 34 | 35 | .autocomplete-suggestion.selected { 36 | background: #333; 37 | color: #fff; 38 | } 39 | 40 | .autocomplete-suggestion:hover { 41 | background: #444; 42 | color: #fff; 43 | } 44 | 45 | .autocomplete-suggestion > .context { 46 | font-size: 12px; 47 | } 48 | -------------------------------------------------------------------------------- /workshop/public/css/featherlight.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Featherlight - ultra slim jQuery lightbox 3 | * Version 1.7.13 - http://noelboss.github.io/featherlight/ 4 | * 5 | * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com) 6 | * MIT Licensed. 7 | **/ 8 | html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}} -------------------------------------------------------------------------------- /workshop/public/css/tags.css: -------------------------------------------------------------------------------- 1 | /* Tags */ 2 | 3 | #head-tags{ 4 | margin-left:1em; 5 | margin-top:1em; 6 | } 7 | 8 | #body .tags a.tag-link { 9 | display: inline-block; 10 | line-height: 2em; 11 | font-size: 0.8em; 12 | position: relative; 13 | margin: 0 16px 8px 0; 14 | padding: 0 10px 0 12px; 15 | background: #8451a1; 16 | 17 | -webkit-border-bottom-right-radius: 3px; 18 | border-bottom-right-radius: 3px; 19 | -webkit-border-top-right-radius: 3px; 20 | border-top-right-radius: 3px; 21 | 22 | -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2); 23 | box-shadow: 0 1px 2px rgba(0,0,0,0.2); 24 | color: #fff; 25 | } 26 | 27 | #body .tags a.tag-link:before { 28 | content: ""; 29 | position: absolute; 30 | top:0; 31 | left: -1em; 32 | width: 0; 33 | height: 0; 34 | border-color: transparent #8451a1 transparent transparent; 35 | border-style: solid; 36 | border-width: 1em 1em 1em 0; 37 | } 38 | 39 | #body .tags a.tag-link:after { 40 | content: ""; 41 | position: absolute; 42 | top: 10px; 43 | left: 1px; 44 | width: 5px; 45 | height: 5px; 46 | -webkit-border-radius: 50%; 47 | border-radius: 100%; 48 | background: #fff; 49 | } 50 | -------------------------------------------------------------------------------- /workshop/public/detective/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Root Cause Analysis on My AWS Workshop 5 | /detective.html 6 | Recent content in Root Cause Analysis on My AWS Workshop 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 15 Apr 2020 14:35:29 +0100 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /workshop/public/fonts/Inconsolata.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Inconsolata.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-Normal-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-Normal-webfont.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-Normal-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-Normal-webfont.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-Normal-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-Normal-webfont.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-Normal-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-Normal-webfont.woff2 -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-UltraLight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-UltraLight-webfont.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-UltraLight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-UltraLight-webfont.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-UltraLight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-UltraLight-webfont.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Novecentosanswide-UltraLight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Novecentosanswide-UltraLight-webfont.woff2 -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_200.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_200.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_200.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_200.woff2 -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_300.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_300.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_300.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_300.woff2 -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_500.eot -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_500.ttf -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_500.woff -------------------------------------------------------------------------------- /workshop/public/fonts/Work_Sans_500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/fonts/Work_Sans_500.woff2 -------------------------------------------------------------------------------- /workshop/public/images/action-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/action-failed-1.png -------------------------------------------------------------------------------- /workshop/public/images/apn-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/apn-logo.jpg -------------------------------------------------------------------------------- /workshop/public/images/approve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/approve.png -------------------------------------------------------------------------------- /workshop/public/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/architecture.png -------------------------------------------------------------------------------- /workshop/public/images/aws-open-source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/aws-open-source.jpg -------------------------------------------------------------------------------- /workshop/public/images/clippy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/public/images/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/completed.png -------------------------------------------------------------------------------- /workshop/public/images/compliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/compliant.png -------------------------------------------------------------------------------- /workshop/public/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/config.png -------------------------------------------------------------------------------- /workshop/public/images/default-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/default-sg.png -------------------------------------------------------------------------------- /workshop/public/images/devsecopspipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/devsecopspipeline.png -------------------------------------------------------------------------------- /workshop/public/images/ee_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/ee_dashboard.png -------------------------------------------------------------------------------- /workshop/public/images/ee_dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/ee_dashboard2.png -------------------------------------------------------------------------------- /workshop/public/images/login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/login2.png -------------------------------------------------------------------------------- /workshop/public/images/login3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/login3.png -------------------------------------------------------------------------------- /workshop/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/logo.png -------------------------------------------------------------------------------- /workshop/public/images/non-compliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/non-compliant.png -------------------------------------------------------------------------------- /workshop/public/images/pipeline-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/pipeline-failed-1.png -------------------------------------------------------------------------------- /workshop/public/images/soaktest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/soaktest.png -------------------------------------------------------------------------------- /workshop/public/images/taillogs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/taillogs-1.png -------------------------------------------------------------------------------- /workshop/public/images/taillogs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/taillogs-2.png -------------------------------------------------------------------------------- /workshop/public/images/taillogs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/images/taillogs-3.png -------------------------------------------------------------------------------- /workshop/public/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DevSecOps on AWS 5 | / 6 | Recent content on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Fri, 29 May 2020 14:15:42 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/introduction/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Introduction on DevSecOps on AWS 5 | /introduction.html 6 | Recent content in Introduction on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 30 Oct 2019 17:50:15 -0700 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/launch/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Launch Stacks on DevSecOps on AWS 5 | /launch.html 6 | Recent content in Launch Stacks on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 30 Oct 2019 17:50:15 -0700 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/secrets/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Store Secrets on DevSecOps on AWS 5 | /secrets.html 6 | Recent content in Store Secrets on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 30 Oct 2019 17:50:15 -0700 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on DevSecOps on AWS 5 | /tags.html 6 | Recent content in Tags on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | 10 | 11 | -------------------------------------------------------------------------------- /workshop/public/taskcat/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Testing a Template on DevSecOps on AWS 5 | /taskcat.html 6 | Recent content in Testing a Template on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 15 Apr 2020 14:33:32 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/validate/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Validating a Template on DevSecOps on AWS 5 | /validate.html 6 | Recent content in Validating a Template on DevSecOps on AWS 7 | Hugo -- gohugo.io 8 | en-US 9 | Wed, 15 Apr 2020 14:30:38 +0100 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Lt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Lt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Th.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Th.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Th.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Th.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_Th.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_Th.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_ThIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_ThIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_ThIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_ThIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberCd_W_ThIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberCd_W_ThIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_He.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_He.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_He.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_He.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_He.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_He.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Lt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Lt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Md.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Md.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Md.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Md.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Md.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Md.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDisplay_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDisplay_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberDuospace_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberDuospace_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmberMono_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmberMono_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_He.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_He.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_He.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_He.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_He.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_He.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_HeIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_HeIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_HeIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_HeIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_HeIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_HeIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Lt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Lt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBdIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBdIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_SBdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_SBdIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Th.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Th.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Th.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Th.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_Th.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_Th.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_ThIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_ThIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_ThIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_ThIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/AmazonEmber_W_ThIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/AmazonEmber_W_ThIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_It.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_It.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_It.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_It.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_It.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_It.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyDisplay_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyDisplay_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Bd.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Bd.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Lt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Lt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Rg.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Rg.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/BookerlyLCD_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/BookerlyLCD_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /workshop/public/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/public/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /workshop/requirements.txt: -------------------------------------------------------------------------------- 1 | toml == 0.10.0 2 | boto3 == 1.10.32 3 | requests == 2.22.0 4 | requests-aws4auth ==0.9 -------------------------------------------------------------------------------- /workshop/resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/resources/.DS_Store -------------------------------------------------------------------------------- /workshop/resources/_gen/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/resources/_gen/.DS_Store -------------------------------------------------------------------------------- /workshop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/.DS_Store -------------------------------------------------------------------------------- /workshop/static/images/action-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/action-failed-1.png -------------------------------------------------------------------------------- /workshop/static/images/apn-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/apn-logo.jpg -------------------------------------------------------------------------------- /workshop/static/images/approve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/approve.png -------------------------------------------------------------------------------- /workshop/static/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/architecture.png -------------------------------------------------------------------------------- /workshop/static/images/aws-open-source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/aws-open-source.jpg -------------------------------------------------------------------------------- /workshop/static/images/chapter.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/chapter.en.png -------------------------------------------------------------------------------- /workshop/static/images/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/completed.png -------------------------------------------------------------------------------- /workshop/static/images/compliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/compliant.png -------------------------------------------------------------------------------- /workshop/static/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/config.png -------------------------------------------------------------------------------- /workshop/static/images/default-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/default-sg.png -------------------------------------------------------------------------------- /workshop/static/images/devsecopspipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/devsecopspipeline.png -------------------------------------------------------------------------------- /workshop/static/images/ee_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/ee_dashboard.png -------------------------------------------------------------------------------- /workshop/static/images/ee_dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/ee_dashboard2.png -------------------------------------------------------------------------------- /workshop/static/images/login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/login2.png -------------------------------------------------------------------------------- /workshop/static/images/login3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/login3.png -------------------------------------------------------------------------------- /workshop/static/images/non-compliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/non-compliant.png -------------------------------------------------------------------------------- /workshop/static/images/pipeline-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/pipeline-failed-1.png -------------------------------------------------------------------------------- /workshop/static/images/soaktest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/soaktest.png -------------------------------------------------------------------------------- /workshop/static/images/taillogs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/taillogs-1.png -------------------------------------------------------------------------------- /workshop/static/images/taillogs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/taillogs-2.png -------------------------------------------------------------------------------- /workshop/static/images/taillogs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/static/images/taillogs-3.png -------------------------------------------------------------------------------- /workshop/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/.DS_Store -------------------------------------------------------------------------------- /workshop/themes/learn/.editorconfig: -------------------------------------------------------------------------------- 1 | # https://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | trim_trailing_whitespace = true 11 | 12 | [*.js] 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | public/ 3 | exampleSite/public 4 | -------------------------------------------------------------------------------- /workshop/themes/learn/.grenrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dataSource: "prs" 3 | prefix: "v" 4 | onlyMilestones: false 5 | changelogFilename: "CHANGELOG.md" 6 | includeMessages: "all" 7 | ignoreIssuesWith: 8 | - "support" 9 | ignoreLabels: 10 | - "duplicate" 11 | - "invalid" 12 | - "wontfix" 13 | groupBy: 14 | New features: 15 | - "feature" 16 | Bug Fixes: 17 | - "bug" 18 | Enhancements: 19 | - "enhancement" 20 | Internationalisation: 21 | - "i18n" 22 | Theme Meta: 23 | - "meta" 24 | Uncategorised: 25 | - "closed" 26 | -------------------------------------------------------------------------------- /workshop/themes/learn/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Grav 4 | Copyright (c) 2016 MATHIEU CORNIC 5 | Copyright (c) 2017 Valere JEANTET 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy of 8 | this software and associated documentation files (the "Software"), to deal in 9 | the Software without restriction, including without limitation the rights to 10 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 11 | the Software, and to permit persons to whom the Software is furnished to do so, 12 | subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 19 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 20 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 21 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 22 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /workshop/themes/learn/archetypes/chapter.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .Name "-" " " | title }}" 3 | date = {{ .Date }} 4 | weight = 5 5 | chapter = true 6 | pre = "X. " 7 | +++ 8 | 9 | Lorem Ipsum. -------------------------------------------------------------------------------- /workshop/themes/learn/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .Name "-" " " | title }}" 3 | date = {{ .Date }} 4 | weight = 5 5 | +++ 6 | 7 | Lorem Ipsum. -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 MATHIEU CORNIC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basics 3 | weight: 5 4 | pre: "1. " 5 | chapter: true 6 | --- 7 | 8 | ### Chapter 1 9 | 10 | # Basics 11 | 12 | Discover what this Hugo theme is all about and the core-concepts behind it. 13 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Démarrage 3 | weight: 5 4 | pre: "1. " 5 | chapter: true 6 | --- 7 | 8 | ### Chapitre 1 9 | 10 | # Démarrage 11 | 12 | Découvrez comment utiliser ce thème Hugo et apprenez-en les concepts 13 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/installation/images/chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/basics/installation/images/chapter.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/requirements/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Requirements 3 | weight: 10 4 | disableToc: true 5 | --- 6 | 7 | Thanks to the simplicity of Hugo, this page is as empty as this theme needs requirements. 8 | 9 | Just download latest version of [Hugo binary (> 0.25)](https://gohugo.io/getting-started/installing/) for your OS (Windows, Linux, Mac) : it's that simple. 10 | 11 | ![Magic](/en/basics/requirements/images/magic.gif?classes=shadow) 12 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/requirements/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Prérequis 3 | weight: 10 4 | disableToc: true 5 | --- 6 | 7 | Grâce à la simplicité d'Hugo, cette page est vide car il n'y a quasi pas de prérequis pour utiliser le thème. 8 | 9 | Téléchargez la dernière version du [binaire Hugo (> 0.25)](https://gohugo.io/getting-started/installing/) pour votre Système d'exploitation (Windows, Linux, Mac) : et c'est tout ! 10 | 11 | ![Magic](/en/basics/requirements/images/magic.gif?classes=shadow) 12 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/requirements/images/magic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/basics/requirements/images/magic.gif -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/style-customization/images/blue-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/basics/style-customization/images/blue-variant.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/style-customization/images/green-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/basics/style-customization/images/green-variant.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/basics/style-customization/images/red-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/basics/style-customization/images/red-variant.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Content 3 | weight: 10 4 | chapter: true 5 | pre: "2. " 6 | --- 7 | 8 | ### Chapter 2 9 | 10 | # Content 11 | 12 | Find out how to create and organize your content quickly and intuitively. 13 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contenu 3 | weight: 10 4 | chapter: true 5 | pre: "2. " 6 | --- 7 | 8 | ### Chapitre 2 9 | 10 | # Contenu 11 | 12 | Découvrez comment créer et organiser votre contenu facilement et intuitivement. 13 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/archetypes.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Archetypes 3 | weight: 10 4 | --- 5 | 6 | Using the command: `hugo new [relative new content path]`, you can start a content file with the date and title automatically set. While this is a welcome feature, active writers need more : [archetypes](https://gohugo.io/content/archetypes/). 7 | 8 | It is pre-configured skeleton pages with default front matter. Please refer to the documentation for types of page to understand the differences. 9 | 10 | ## Chapter {#archetypes-chapter} 11 | 12 | To create a Chapter page, run the following commands 13 | 14 | ``` 15 | hugo new --kind chapter /_index.md 16 | ``` 17 | 18 | It will create a page with predefined Front-Matter: 19 | 20 | ```markdown 21 | +++ 22 | title = "{{ replace .Name "-" " " | title }}" 23 | date = {{ .Date }} 24 | weight = 5 25 | chapter = true 26 | pre = "X. " 27 | +++ 28 | 29 | ### Chapter X 30 | 31 | # Some Chapter title 32 | 33 | Lorem Ipsum. 34 | ``` 35 | 36 | ## Default 37 | 38 | To create a default page, run either one of the following commands 39 | 40 | ``` 41 | # Either 42 | hugo new //_index.md 43 | # Or 44 | hugo new /.md 45 | ``` 46 | 47 | It will create a page with predefined Front-Matter: 48 | 49 | ```markdown 50 | +++ 51 | title = "{{ replace .Name "-" " " | title }}" 52 | date = {{ .Date }} 53 | weight = 5 54 | +++ 55 | 56 | Lorem Ipsum. 57 | ``` -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/archetypes.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Archétypes 3 | weight: 10 4 | --- 5 | 6 | En utilisant la commande: `hugo new [chemin vers nouveau contenu]`, vous pouvez créer un nouveau fichier avec la date et le title automatiquement initialisé. Même si c'est une fonctionnalité intéressante, elle reste limitée pour les auteurs actifs qui ont besoin de mieux : les [archetypes](https://gohugo.io/content/archetypes/). 7 | 8 | Les archétypes sont des squelettes de pages préconfigurées avec un Front Matter par défaut. Merci de vous référer à la documentation pour connaitre les différents types de page. 9 | 10 | ## Chapitre {#archetypes-chapter} 11 | 12 | Pour créer un chapitre, lancez les commandes suivantes 13 | 14 | ``` 15 | hugo new --kind chapter /_index.md 16 | ``` 17 | 18 | Cela crééra une page avec le Front Matter suivant: 19 | 20 | ```markdown 21 | +++ 22 | title = "{{ replace .Name "-" " " | title }}" 23 | date = {{ .Date }} 24 | weight = 5 25 | chapter = true 26 | pre = "X. " 27 | +++ 28 | 29 | ### Chapter X 30 | 31 | # Some Chapter title 32 | 33 | Lorem Ipsum. 34 | ``` 35 | 36 | ## Défaut 37 | 38 | Pour créer une page classique, lancer l'une des deux commandes suivantes 39 | 40 | ``` 41 | # Soit 42 | hugo new //_index.md 43 | # Ou 44 | hugo new /.md 45 | ``` 46 | 47 | Cela crééra une page avec le Front Matter suivant: 48 | 49 | ```markdown 50 | +++ 51 | title = "{{ replace .Name "-" " " | title }}" 52 | date = {{ .Date }} 53 | weight = 5 54 | +++ 55 | 56 | Lorem Ipsum. 57 | ``` -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/i18n/images/i18n-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/cont/i18n/images/i18n-menu.gif -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/icons.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Icons and logos 3 | weight: 27 4 | --- 5 | 6 | The Learn theme for Hugo loads the [**Font Awesome**](https://fontawesome.com) library, allowing you to easily display any icon or logo available in the Font Awesome free collection. 7 | 8 | ## Finding an icon 9 | 10 | Browse through the available icons in the [Font Awesome Gallery](https://fontawesome.com/icons?d=gallery&m=free). Notice that the **free** filter is enabled, as only the free icons are available by default. 11 | 12 | Once on the Font Awesome page for a specific icon, for example the page for the [heart](https://fontawesome.com/icons/heart?style=solid), copy the HTML reference and paste into the markdown content. 13 | 14 | The HTML to include the heart icon is: 15 | 16 | ``` 17 | 18 | ``` 19 | 20 | ## Including in markdown 21 | 22 | Paste the `` HTML into markup and Font Awesome will load the relevant icon. 23 | 24 | ``` 25 | Built with from Grav and Hugo 26 | ``` 27 | 28 | Which appears as 29 | 30 | Built with from Grav and Hugo 31 | 32 | ## Customising icons 33 | 34 | Font Awesome provides many ways to modify the icon 35 | 36 | * Change colour (by default the icon will inherit the parent colour) 37 | * Increase or decrease size 38 | * Rotate 39 | * Combine with other icons 40 | 41 | Check the full documentation on [web fonts with CSS](https://fontawesome.com/how-to-use/web-fonts-with-css) for more. 42 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/pages/images/frontmatter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/cont/pages/images/frontmatter-icon.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/pages/images/pages-chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/cont/pages/images/pages-chapter.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/pages/images/pages-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/cont/pages/images/pages-default.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/tags.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2018-11-29T08:41:44+01:00 3 | title: Tags 4 | weight: 40 5 | tags: ["documentation", "tutorial"] 6 | --- 7 | 8 | *Learn theme* support one default taxonomy of gohugo: the *tag* feature. 9 | 10 | ## Configuration 11 | 12 | Just add tags to any page: 13 | 14 | ```markdown 15 | --- 16 | date: 2018-11-29T08:41:44+01:00 17 | title: Theme tutorial 18 | weight: 15 19 | tags: ["tutorial", "theme"] 20 | --- 21 | ``` 22 | 23 | ## Behavior 24 | 25 | 26 | The tags are displayed at the top of the page, in their insertion order. 27 | 28 | Each tag is a link to a *Taxonomy* page displaying all the articles with the given tag. 29 | 30 | ## List all the tags 31 | 32 | In the `config.toml` file you can add a shortcut to display all the tags 33 | 34 | ```toml 35 | [[menu.shortcuts]] 36 | name = " Tags" 37 | url = "/tags" 38 | weight = 30 39 | ``` -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/cont/tags.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2018-11-29T08:41:44+01:00 3 | title: Tags 4 | weight: 40 5 | tags: ["documentation", "tutorial"] 6 | --- 7 | 8 | 9 | Le *thème Learn* supporte une des taxonomy par défaut de GoHugo : les tags. 10 | 11 | ## Configuration 12 | 13 | Il suffit d'ajouter un tableau de tags sur la page : 14 | 15 | ```markdown 16 | --- 17 | date: 2018-11-29T08:41:44+01:00 18 | title: Tutoriel pour le thème 19 | weight: 15 20 | tags: ["tutoriel", "theme"] 21 | --- 22 | ``` 23 | 24 | ## Comportement 25 | 26 | Les tags sont affichés en haut de la page, dans l'ordre dans lequel ils ont été saisis. 27 | 28 | Chaque tag est un lien vers une page *Taxonomy*, qui affiche tous les article avec ce tag. 29 | 30 | 31 | ## Liste des tags 32 | 33 | Il est possible de rajouter un raccourci dans le fichier `config.toml` afin d'afficher une page listant tous les tags 34 | 35 | ```toml 36 | [[menu.shortcuts]] 37 | name = " Tags" 38 | url = "/tags" 39 | weight = 30 40 | ``` -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/credits.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Credits 3 | disableToc: true 4 | --- 5 | 6 | ## Contributors 7 | 8 | Thanks to them for making Open Source Software a better place ! 9 | 10 | {{% ghcontributors "https://api.github.com/repos/matcornic/hugo-theme-learn/contributors?per_page=100" %}} 11 | 12 | And a special thanks to [@vjeantet](https://github.com/vjeantet) for his work on [docdock](https://github.com/vjeantet/hugo-theme-docdock), a fork of hugo-theme-learn. v2.0.0 of this theme is inspired by his work. 13 | 14 | ## Packages and libraries 15 | * [mermaid](https://knsv.github.io/mermaid) - generation of diagram and flowchart from text in a similar manner as markdown 16 | * [font awesome](http://fontawesome.io/) - the iconic font and CSS framework 17 | * [jQuery](https://jquery.com) - The Write Less, Do More, JavaScript Library 18 | * [lunr](https://lunrjs.com) - Lunr enables you to provide a great search experience without the need for external, server-side, search services... 19 | * [horsey](https://bevacqua.github.io/horsey/) - Progressive and customizable autocomplete component 20 | * [clipboard.js](https://zenorocha.github.io/clipboard.js) - copy text to clipboard 21 | * [highlight.js](https://highlightjs.org) - Javascript syntax highlighter 22 | * [modernizr](https://modernizr.com) - A JavaScript toolkit that allows web developers to use new CSS3 and HTML5 features while maintaining a fine level of control over browsers that don't support 23 | 24 | ## Tooling 25 | 26 | * [Netlify](https://www.netlify.com) - Continuous deployement and hosting of this documentation 27 | * [Hugo](https://gohugo.io/) 28 | 29 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/credits.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Crédits 3 | disableToc: true 4 | --- 5 | 6 | ## Contributeurs 7 | 8 | Merci à eux de rendre le monde Open Source meilleur ! 9 | 10 | {{% ghcontributors "https://api.github.com/repos/matcornic/hugo-theme-learn/contributors?per_page=100" %}} 11 | 12 | Et un grand merci à [@vjeantet](https://github.com/vjeantet) pour son travail sur [docdock](https://github.com/vjeantet/hugo-theme-docdock), un fork de _hugo-theme-learn_. La v2.0.0 du thème est en grande partie inspirée de son travail. 13 | 14 | ## Packages et librairies 15 | * [mermaid](https://knsv.github.io/mermaid) - géneration de diagrames et graphiques à partir de texte similaire à Markdown 16 | * [font awesome](http://fontawesome.io/) - Le framework de polices iconiques 17 | * [jQuery](https://jquery.com) - La plus connue des librairies Javascript 18 | * [lunr](https://lunrjs.com) - Lunr fournit des fonctions de recherche sans service externe 19 | * [horsey](https://bevacqua.github.io/horsey/) - Autocomplétion de composants (utiliser pour les suggestions de recherche) 20 | * [clipboard.js](https://zenorocha.github.io/clipboard.js) - Copier le texte dans le presse-papier 21 | * [highlight.js](https://highlightjs.org) - Mise en valeur de syntaxes 22 | * [modernizr](https://modernizr.com) - Une boite à outil Javascript qui permet aux développeurs d'utiliser les dernières fonctionnalités de CSS et HTML5, même sur de vieux navigateurs. 23 | 24 | ## Outils 25 | 26 | * [Netlify](https://www.netlify.com) - Déploiement continue et hébergement de cette documentation 27 | * [Hugo](https://gohugo.io/) 28 | 29 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2016-04-09T16:50:16+02:00 3 | title: Shortcodes 4 | pre: "3. " 5 | weight: 15 6 | --- 7 | 8 | Hugo uses Markdown for its simple content format. However, there are a lot of things that Markdown doesn’t support well. You could use pure HTML to expand possibilities. 9 | 10 | But this happens to be a bad idea. Everyone uses Markdown because it's pure and simple to read even non-rendered. You should avoid HTML to keep it as simple as possible. 11 | 12 | To avoid this limitations, Hugo created [shortcodes](https://gohugo.io/extras/shortcodes/). A shortcode is a simple snippet inside a page. 13 | 14 | **Hugo-theme-learn** provides multiple shortcodes on top of existing ones. 15 | 16 | {{%children style="h2" description="true" %}} 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2016-04-09T16:50:16+02:00 3 | title: Shortcodes 4 | pre: "3. " 5 | weight: 15 6 | --- 7 | 8 | Hugo utilise Markdown pour son format simple. Cependant, il y a beaucoup de chose que Markdown ne supporte pas bien. On pourrait utiliser du HTML pur pour améliorer les capacité du Markdown. 9 | 10 | Mais c'est probablement une mauvaise idée. Tout le monde utilise le Markdown parce que c'est pur et simple à lire même lorsqu'il est affiché en texte brut. Vous devez éviter le HTML autant que possible pour garder le contenu simple. 11 | 12 | Cependant, pour éviter les limitations, Hugo a créé les [shortcodes](https://gohugo.io/extras/shortcodes/). Un shortcode est un bout de code (*snippet*) dans une page. 13 | 14 | **Hugo-theme-learn** fournit de multiple shortcodes en plus de ceux existant. 15 | 16 | {{%children style="h2" description="true" %}} 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/button.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Button 3 | description : "Nice buttons on your page." 4 | --- 5 | 6 | A button is a just a clickable button with optional icon. 7 | 8 | ``` 9 | {{%/* button href="https://getgrav.org/" */%}}Get Grav{{%/* /button */%}} 10 | {{%/* button href="https://getgrav.org/" icon="fas fa-download" */%}}Get Grav with icon{{%/* /button */%}} 11 | {{%/* button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" */%}}Get Grav with icon right{{%/* /button */%}} 12 | ``` 13 | 14 | {{% button href="https://getgrav.org/" %}}Get Grav{{% /button %}} 15 | {{% button href="https://getgrav.org/" icon="fas fa-download" %}}Get Grav with icon{{% /button %}} 16 | {{% button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" %}}Get Grav with icon right{{% /button %}} 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/button.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Button (Bouton) 3 | description : "De beaux boutons sur votre page." 4 | --- 5 | 6 | Le shortcode *button* est simplement un bouton cliquable avec une icône optionnelle. 7 | 8 | ``` 9 | {{%/* button href="https://getgrav.org/" */%}}Téléchargez Grav{{%/* /button */%}} 10 | {{%/* button href="https://getgrav.org/" icon="fas fa-download" */%}}Téléchargez Grav avec icône{{%/* /button */%}} 11 | {{%/* button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" */%}}Téléchargez Grav avec icône à droite{{%/* /button */%}} 12 | ``` 13 | 14 | {{% button href="https://getgrav.org/" %}}Téléchargez Grav{{% /button %}} 15 | {{% button href="https://getgrav.org/" icon="fas fa-download" %}}Téléchargez Grav avec icône{{% /button %}} 16 | {{% button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" %}}Téléchargez Grav avec icône à droite{{% /button %}} 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1-1" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1-1" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1-1-1" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 1-1-1-1-1" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 2" 3 | description = "" 4 | +++ 5 | 6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 7 | tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 8 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo 9 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse 10 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non 11 | proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 2" 3 | description = "" 4 | +++ 5 | 6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 7 | tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 8 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo 9 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse 10 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non 11 | proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page test 3" 3 | description = "This is a page test" 4 | +++ 5 | 6 | This is a test 3 demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page test 3" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo test 3 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 3" 3 | description = "This is a demo child page" 4 | +++ 5 | 6 | This is a demo child page, not displayed in the menu -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 3" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 4" 3 | description = "This is a demo child page" 4 | hidden = true 5 | +++ 6 | 7 | This is a demo child page, not displayed in the menu -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page 4" 3 | description = "Ceci est une page test" 4 | hidden = true 5 | +++ 6 | 7 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/test.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page test" 3 | description = "This is a page test" 4 | +++ 5 | 6 | This is a test demo child page -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/children/test.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "page test" 3 | description = "Ceci est une page test" 4 | +++ 5 | 6 | Ceci est une page de demo -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/notice.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Notice 3 | description : "Disclaimers to help you structure your page" 4 | --- 5 | 6 | The notice shortcode shows 4 types of disclaimers to help you structure your page. 7 | 8 | ### Note 9 | 10 | ``` 11 | {{%/* notice note */%}} 12 | A notice disclaimer 13 | {{%/* /notice */%}} 14 | ``` 15 | 16 | renders as 17 | 18 | {{% notice note %}} 19 | A notice disclaimer 20 | {{% /notice %}} 21 | 22 | ### Info 23 | 24 | ``` 25 | {{%/* notice info */%}} 26 | An information disclaimer 27 | {{%/* /notice */%}} 28 | ``` 29 | 30 | renders as 31 | 32 | {{% notice info %}} 33 | An information disclaimer 34 | {{% /notice %}} 35 | 36 | ### Tip 37 | 38 | ``` 39 | {{%/* notice tip */%}} 40 | A tip disclaimer 41 | {{%/* /notice */%}} 42 | ``` 43 | 44 | renders as 45 | 46 | {{% notice tip %}} 47 | A tip disclaimer 48 | {{% /notice %}} 49 | 50 | ### Warning 51 | 52 | ``` 53 | {{%/* notice warning */%}} 54 | An warning disclaimer 55 | {{%/* /notice */%}} 56 | ``` 57 | 58 | renders as 59 | 60 | {{% notice warning %}} 61 | A warning disclaimer 62 | {{% /notice %}} -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/notice.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Notice 3 | description : "Message pour vous aider à structurer votre contenu" 4 | --- 5 | 6 | Le shortcode *Notice* permet d'afficher 4 types de message pour vous aider à structurer votre contenu. 7 | 8 | ### Note 9 | 10 | ``` 11 | {{%/* notice note */%}} 12 | Une notice de type *note* 13 | {{%/* /notice */%}} 14 | ``` 15 | 16 | s'affiche comme 17 | 18 | {{% notice note %}} 19 | Une notice de type *note* 20 | {{% /notice %}} 21 | 22 | ### Info 23 | 24 | ``` 25 | {{%/* notice info */%}} 26 | Une notice de type *info* 27 | {{%/* /notice */%}} 28 | ``` 29 | 30 | s'affiche comme 31 | 32 | {{% notice info %}} 33 | Une notice de type *info* 34 | {{% /notice %}} 35 | 36 | ### Tip 37 | 38 | ``` 39 | {{%/* notice tip */%}} 40 | Une notice de type *tip* 41 | {{%/* /notice */%}} 42 | ``` 43 | 44 | s'affiche comme 45 | 46 | {{% notice tip %}} 47 | Une notice de type *tip* 48 | {{% /notice %}} 49 | 50 | ### Warning 51 | 52 | ``` 53 | {{%/* notice warning */%}} 54 | Une notice de type *warning* 55 | {{%/* /notice */%}} 56 | ``` 57 | 58 | s'affiche comme 59 | 60 | {{% notice warning %}} 61 | Une notice de type *warning* 62 | {{% /notice %}} -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/siteparam.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Site param 3 | description : "Get value of site params variables in your page." 4 | --- 5 | 6 | `siteparam` shortcode is used to help you print values of site params. 7 | 8 | For instance, in this current site, the `editURL` variable is used in `config.toml` 9 | 10 | ```toml 11 | [params] 12 | editURL = "https://github.com/matcornic/hugo-theme-learn/edit/master/exampleSite/content/" 13 | ``` 14 | 15 | Use the `siteparam` shortcode to display its value. 16 | 17 | ``` 18 | `editURL` Value : {{%/* siteparam "editURL" */%}} 19 | ``` 20 | 21 | is displayed as 22 | 23 | `editURL` Value : {{% siteparam "editURL" %}} -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/shortcodes/siteparam.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Site param 3 | description : "Afficher la valeur d'un paramètre global du site dans votre page" 4 | --- 5 | 6 | Les shortcode `siteparam` est utilisé pour vous aider à afficher des valeurs provenant des paramètres globaux du site. 7 | 8 | Par exemple, dans ce site, le paramètre `editURL` est utilisé dans le fichier `config.toml` 9 | 10 | ```toml 11 | [params] 12 | editURL = "https://github.com/matcornic/hugo-theme-learn/edit/master/exampleSite/content/" 13 | ``` 14 | 15 | Utilisez le shortcode `siteparam` pour affichier sa valeur. 16 | 17 | ``` 18 | Valeur de `editURL` : {{%/* siteparam "editURL" */%}} 19 | ``` 20 | 21 | s'affiche comme 22 | 23 | Valeur de `editURL` : {{% siteparam "editURL" %}} -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/showcase.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Showcase 3 | disableToc: true 4 | --- 5 | 6 | #### [TAT](https://ovh.github.io/tat/overview/) by OVH 7 | ![TAT image](/images/showcase/tat.png?width=50pc) 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/content/showcase.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Vitrine 3 | disableToc: true 4 | slug: vitrine 5 | --- 6 | 7 | #### [TAT](https://ovh.github.io/tat/overview/) par OVH 8 | ![TAT image](/images/showcase/tat.png?width=50pc) 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | Download 4 | 5 | 6 | Star 7 | 8 | 9 | Fork 10 | 11 |

Built with from Grav and Hugo

12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/layouts/shortcodes/ghcontributors.html: -------------------------------------------------------------------------------- 1 | 22 |
23 | {{ $url := .Get 0 }} 24 | {{ range getJSON $url }} 25 |
26 | 27 | 28 | {{.contributions}} commits 29 |
30 | {{ end }} 31 |
-------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.eot -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/exampleSite/static/images/showcase/tat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/exampleSite/static/images/showcase/tat.png -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/ar.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "...البحث" 3 | 4 | [Clear-History] 5 | other = "مسح السجل" 6 | 7 | [Attachments-label] 8 | other = "مرفقات" 9 | 10 | [title-404] 11 | other = "خطأ" 12 | 13 | [message-404] 14 | other = ".¯\\_(ツ)_/¯أوبس. يبدو أن هذه الصفحة غير موجودة" 15 | 16 | [Go-to-homepage] 17 | other = "الذهاب إلى الصفحة الرئيسية" 18 | 19 | [Edit-this-page] 20 | other = "تعديل هذه الصفحة" 21 | 22 | [Shortcuts-Title] 23 | other = "المزيد" 24 | 25 | [Expand-title] 26 | other = "...قم بتوسيع" -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/de.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Suchen..." 3 | 4 | [Clear-History] 5 | other = "Verlauf löschen" 6 | 7 | [Attachments-label] 8 | other = "Anhänge" 9 | 10 | [title-404] 11 | other = "Fehler" 12 | 13 | [message-404] 14 | other = "Huch. Diese Seite scheint nicht zu existieren ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Gehe zur Homepage" 18 | 19 | [Edit-this-page] 20 | other = "Bearbeite diese Seite" 21 | 22 | [Shortcuts-Title] 23 | other = "Mehr" 24 | 25 | [Expand-title] 26 | other = "Erweitere mich..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/en.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Search..." 3 | 4 | [Clear-History] 5 | other = "Clear History" 6 | 7 | [Attachments-label] 8 | other = "Attachments" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Woops. Looks like this page doesn't exist ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Go to homepage" 18 | 19 | [Edit-this-page] 20 | other = "Edit this page" 21 | 22 | [Shortcuts-Title] 23 | other = "More" 24 | 25 | [Expand-title] 26 | other = "Expand me..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/es.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Buscar..." 3 | 4 | [Clear-History] 5 | other = "Borrar Historial" 6 | 7 | [Attachments-label] 8 | other = "Adjuntos" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Ups. Parece que la página no existe ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ir al inicio" 18 | 19 | [Edit-this-page] 20 | other = "Editar esta página" 21 | 22 | [Shortcuts-Title] 23 | other = "Más" 24 | 25 | [Expand-title] 26 | other = "Expandir..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/fr.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Rechercher..." 3 | 4 | [Clear-History] 5 | other = "Supprimer l'historique" 6 | 7 | [Attachments-label] 8 | other = "Pièces jointes" 9 | 10 | [title-404] 11 | other = "Erreur" 12 | 13 | [message-404] 14 | other = "Oups. On dirait que cette page n'existe pas ¯\\_(ツ)_/¯" 15 | 16 | [Go-to-homepage] 17 | other = "Vers la page d'accueil" 18 | 19 | [Edit-this-page] 20 | other = "Modifier la page" 21 | 22 | [Shortcuts-Title] 23 | other = "Aller plus loin" 24 | 25 | [Expand-title] 26 | other = "Déroulez-moi..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/hi.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "खोजे..." 3 | 4 | [Clear-History] 5 | other = "इतिहास मिटाएँ" 6 | 7 | [Attachments-label] 8 | other = "संलग्नंक (अटैचमेंट)" 9 | 10 | [title-404] 11 | other = "त्रुटि" 12 | 13 | [message-404] 14 | other = "यह पृष्ठ अभि अनुपलब्ध है!" 15 | 16 | [Go-to-homepage] 17 | other = "मुख्य पृष्ठ पर जाऐ" 18 | 19 | [Edit-this-page] 20 | other = "यह पृष्ठ संपादित करें" 21 | 22 | [Shortcuts-Title] 23 | other = "अधिक सामग्री दिखाएं" 24 | 25 | [Expand-title] 26 | other = "विस्तार करे..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/id.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Telusuri..." 3 | 4 | [Clear-History] 5 | other = "Bersihkan Riwayat" 6 | 7 | [Attachments-label] 8 | other = "Lampiran" 9 | 10 | [title-404] 11 | other = "Kesalahan" 12 | 13 | [message-404] 14 | other = "Oops. Sepertinya halaman ini tidak ada ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ke halaman depan" 18 | 19 | [Edit-this-page] 20 | other = "Edit halaman ini" 21 | 22 | [Shortcuts-Title] 23 | other = "Lainnya" 24 | 25 | [Expand-title] 26 | other = "Bentangkan..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/nl.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Zoeken..." 3 | 4 | [Clear-History] 5 | other = "Wis geschiedenis" 6 | 7 | [Attachments-label] 8 | other = "Bijlagen" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Blijkbaar bestaat deze pagina niet ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Naar startpagina" 18 | 19 | [Edit-this-page] 20 | other = "Deze pagina bewerken" 21 | 22 | [Shortcuts-Title] 23 | other = "Snelkoppelingen" 24 | 25 | [Expand-title] 26 | other = "Lees meer..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/pt.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Procurar..." 3 | 4 | [Clear-History] 5 | other = "Limpar Histórico" 6 | 7 | [Attachments-label] 8 | other = "Anexos" 9 | 10 | [title-404] 11 | other = "Erro" 12 | 13 | [message-404] 14 | other = "Ops. Parece que a página não existe ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ir para o início" 18 | 19 | [Edit-this-page] 20 | other = "Editar esta página" 21 | 22 | [Shortcuts-Title] 23 | other = "Mais" 24 | 25 | [Expand-title] 26 | other = "Expandir..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/tr.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Ara..." 3 | 4 | [Clear-History] 5 | other = "Geçmişi Temizle" 6 | 7 | [Attachments-label] 8 | other = "Ekler" 9 | 10 | [title-404] 11 | other = "Hata" 12 | 13 | [message-404] 14 | other = "Uups. Görünüşe göre böyle bir sayfa yok ¯\\_(ツ)_/¯" 15 | 16 | [Go-to-homepage] 17 | other = "Anasayfaya dön" 18 | 19 | [Edit-this-page] 20 | other = "Sayfayı düzenle" 21 | 22 | [Shortcuts-Title] 23 | other = "Dahası Var" 24 | 25 | [Expand-title] 26 | other = "Genişlet..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/images/screenshot.png -------------------------------------------------------------------------------- /workshop/themes/learn/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/images/tn.png -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ if eq .Kind "section" }} 4 | {{ .Content }} 5 | {{end}} 6 | 7 | {{ if or (eq .Kind "taxonomy") (eq .Kind "taxonomyTerm") }} 8 |
    9 | {{ range .Pages }} 10 |
  • {{.Title}}
  • 11 | {{ end }} 12 |
13 | {{end}} 14 | 15 |
16 | {{with .Params.LastModifierDisplayName}} 17 | {{ . }} {{with $.Date}} {{ .Format "02/01/2006" }}{{end}} 18 | 19 | {{end}} 20 |
21 | 22 | {{ partial "footer.html" . }} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ .Content }} 4 | 5 |
6 | {{with .Params.LastModifierDisplayName}} 7 | {{ . }} {{with $.Date}} {{ .Format "02/01/2006" }}{{end}} 8 | 9 | {{end}} 10 |
11 | 12 | 13 | {{ partial "footer.html" . }} 14 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | navigation 4 | 5 | 6 | {{.Site.Home.Content}} 7 | 8 | {{ partial "footer.html" . }} 9 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/index.json: -------------------------------------------------------------------------------- 1 | [{{ range $index, $page := .Site.Pages }} 2 | {{- if ne $page.Type "json" -}} 3 | {{- if and $index (gt $index 0) -}},{{- end }} 4 | { 5 | "uri": "{{ $page.Permalink }}", 6 | "title": "{{ htmlEscape $page.Title}}", 7 | "tags": [{{ range $tindex, $tag := $page.Params.tags }}{{ if $tindex }}, {{ end }}"{{ $tag| htmlEscape }}"{{ end }}], 8 | "description": "{{ htmlEscape .Description}}", 9 | "content": {{$page.Plain | jsonify}} 10 | } 11 | {{- end -}} 12 | {{- end -}}] -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-comments.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/favicon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/logo.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Privacy | Site Terms | © 2020, Amazon Web Services, Inc. or its affiliates. All rights reserved. 4 | 5 | 6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/meta.html: -------------------------------------------------------------------------------- 1 | 2 | {{ with .Site.Params.author }}{{ end }} 3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/search.html: -------------------------------------------------------------------------------- 1 | 6 | {{ $assetBusting := not .Site.Params.disableAssetsBusting }} 7 | 8 | 9 | 16 | 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/tags.html: -------------------------------------------------------------------------------- 1 | {{ if .Params.tags }} 2 |
3 | {{range .Params.tags}} 4 | {{ . }} 5 | {{end}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/toc.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ .TableOfContents }} 4 |
5 |
6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/attachments.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
3 | 7 | {{if eq .Page.File.BaseFileName "index"}} 8 | {{$.Scratch.Add "filesName" "files"}} 9 | {{else}} 10 | {{$.Scratch.Add "filesName" (printf "%s.files" .Page.File.BaseFileName)}} 11 | {{end}} 12 |
13 | {{ range (readDir (printf "./content/%s%s" .Page.File.Dir ($.Scratch.Get "filesName")) ) }} 14 | {{ $fileDir := replace $.Page.File.Dir "\\" "/" }} 15 | {{if ($.Get "pattern")}} 16 | {{if (findRE ($.Get "pattern") .Name)}} 17 |
  • 18 | 19 | {{.Name}} 20 | 21 | ({{div .Size 1024 }} kb) 22 |
  • 23 | {{end}} 24 | {{else}} 25 |
  • 26 | 27 | {{.Name}} 28 | 29 | ({{div .Size 1024 }} kb) 30 |
  • 31 | {{end}} 32 | {{end}} 33 |
    34 | {{.Inner}} 35 |
    36 | 37 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | 3 | {{ $icon := .Get "icon" }} 4 | {{ $iconposition := .Get "icon-position" }} 5 | {{ if ($icon) }} 6 | {{ if or (not ($iconposition)) (eq $iconposition "left") }} 7 | 8 | {{ end }} 9 | {{ end }} 10 | {{ .Inner }} 11 | {{ if and ($icon) (eq $iconposition "right")}} 12 | 13 | {{ end }} 14 | 15 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
    3 |
    4 | 5 | 6 | {{$expandMessage := T "Expand-title"}} 7 | {{ if .IsNamedParams }} 8 | {{.Get "default" | default $expandMessage}} 9 | {{else}} 10 | {{.Get 0 | default $expandMessage}} 11 | {{end}} 12 | 13 |
    14 | 17 |
    -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- 1 | {{ $img := $.Page.Resources.GetMatch (.Get 0)}} 2 |
    3 | {{(.Get 1)}} 4 |
    -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
    {{ safeHTML .Inner }}
    3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/notice.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
    {{ .Inner }}
    3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/ref.html: -------------------------------------------------------------------------------- 1 | {{- if in (.Get 0) "/_index.md" -}} 2 | {{- $paths := (split (.Get 0) "_index.md") -}} 3 | {{- $pagepath := index $paths 0 -}} 4 | {{- $anchor := index $paths 1 -}} 5 | {{- with .Site.GetPage "section" (trim $pagepath "/") -}} 6 | {{- ( printf "%s%s" $pagepath $anchor ) | relLangURL -}} 7 | {{- end -}} 8 | {{- else -}} 9 | {{- with .Site.GetPage "section" (.Get 0) }} 10 | {{- .RelPermalink -}} 11 | {{- else -}} 12 | {{- .Get 0 | relref .Page -}} 13 | {{- end -}} 14 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/relref.html: -------------------------------------------------------------------------------- 1 | {{- if in (.Get 0) "/_index.md" -}} 2 | {{- $paths := (split (.Get 0) "_index.md") -}} 3 | {{- $pagepath := index $paths 0 -}} 4 | {{- $anchor := index $paths 1 -}} 5 | {{- with .Site.GetPage "section" (trim $pagepath "/") -}} 6 | {{- ( printf "%s%s" $pagepath $anchor ) | relLangURL -}} 7 | {{- end -}} 8 | {{- else -}} 9 | {{- with .Site.GetPage "section" (.Get 0) }} 10 | {{- .RelPermalink -}} 11 | {{- else -}} 12 | {{- .Get 0 | relref .Page -}} 13 | {{- end -}} 14 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/siteparam.html: -------------------------------------------------------------------------------- 1 | {{- $paramName := (.Get 0) -}} 2 | {{- $siteParams := .Site.Params -}} 3 | {{- with $paramName -}} 4 | {{- with $siteParams -}} 5 | {{- index . (lower $paramName) -}} 6 | {{- end -}} 7 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/siteurl.html: -------------------------------------------------------------------------------- 1 | {{ .Page.Site.BaseURL }} -------------------------------------------------------------------------------- /workshop/themes/learn/static/css/auto-complete.css: -------------------------------------------------------------------------------- 1 | .autocomplete-suggestions { 2 | text-align: left; 3 | cursor: default; 4 | border: 1px solid #ccc; 5 | border-top: 0; 6 | background: #fff; 7 | box-shadow: -1px 1px 3px rgba(0,0,0,.1); 8 | 9 | /* core styles should not be changed */ 10 | position: absolute; 11 | display: none; 12 | z-index: 9999; 13 | max-height: 254px; 14 | overflow: hidden; 15 | overflow-y: auto; 16 | box-sizing: border-box; 17 | 18 | } 19 | .autocomplete-suggestion { 20 | position: relative; 21 | cursor: pointer; 22 | padding: 7px; 23 | line-height: 23px; 24 | white-space: nowrap; 25 | overflow: hidden; 26 | text-overflow: ellipsis; 27 | color: #333; 28 | } 29 | 30 | .autocomplete-suggestion b { 31 | font-weight: normal; 32 | color: #1f8dd6; 33 | } 34 | 35 | .autocomplete-suggestion.selected { 36 | background: #333; 37 | color: #fff; 38 | } 39 | 40 | .autocomplete-suggestion:hover { 41 | background: #444; 42 | color: #fff; 43 | } 44 | 45 | .autocomplete-suggestion > .context { 46 | font-size: 12px; 47 | } 48 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/css/featherlight.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Featherlight - ultra slim jQuery lightbox 3 | * Version 1.7.13 - http://noelboss.github.io/featherlight/ 4 | * 5 | * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com) 6 | * MIT Licensed. 7 | **/ 8 | html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}} -------------------------------------------------------------------------------- /workshop/themes/learn/static/css/tags.css: -------------------------------------------------------------------------------- 1 | /* Tags */ 2 | 3 | #head-tags{ 4 | margin-left:1em; 5 | margin-top:1em; 6 | } 7 | 8 | #body .tags a.tag-link { 9 | display: inline-block; 10 | line-height: 2em; 11 | font-size: 0.8em; 12 | position: relative; 13 | margin: 0 16px 8px 0; 14 | padding: 0 10px 0 12px; 15 | background: #8451a1; 16 | 17 | -webkit-border-bottom-right-radius: 3px; 18 | border-bottom-right-radius: 3px; 19 | -webkit-border-top-right-radius: 3px; 20 | border-top-right-radius: 3px; 21 | 22 | -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2); 23 | box-shadow: 0 1px 2px rgba(0,0,0,0.2); 24 | color: #fff; 25 | } 26 | 27 | #body .tags a.tag-link:before { 28 | content: ""; 29 | position: absolute; 30 | top:0; 31 | left: -1em; 32 | width: 0; 33 | height: 0; 34 | border-color: transparent #8451a1 transparent transparent; 35 | border-style: solid; 36 | border-width: 1em 1em 1em 0; 37 | } 38 | 39 | #body .tags a.tag-link:after { 40 | content: ""; 41 | position: absolute; 42 | top: 10px; 43 | left: 1px; 44 | width: 5px; 45 | height: 5px; 46 | -webkit-border-radius: 50%; 47 | border-radius: 100%; 48 | background: #fff; 49 | } 50 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Inconsolata.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_200.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_200.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_200.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_200.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_300.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_300.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_300.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_300.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_500.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_500.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_500.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/fonts/Work_Sans_500.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/images/clippy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/images/logo.png -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_Th.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberCd_W_ThIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_He.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Md.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDisplay_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberDuospace_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmberMono_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_He.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_He.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_He.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_He.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_He.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_He.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_HeIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_SBdIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_Th.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/AmazonEmber_W_ThIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_It.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyDisplay_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Bd.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_BdIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Lt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_LtIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_Rg.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/BookerlyLCD_W_RgIt.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-devsecops-workshop/0b96427871590a3a24aafa2988fa7a4f02aa70eb/workshop/themes/learn/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/theme.toml: -------------------------------------------------------------------------------- 1 | # theme.toml template for a Hugo theme 2 | # See https://github.com/spf13/hugoThemes#themetoml for an example 3 | 4 | name = "Learn" 5 | license = "MIT" 6 | licenselink = "https://github.com/matcornic/hugo-theme-learn/blob/master/LICENSE.md" 7 | description = "Documentation theme for Hugo, based on Grav Learn theme" 8 | homepage = "https://github.com/matcornic/hugo-theme-learn/" 9 | repo = "https://github.com/matcornic/hugo-theme-learn" 10 | tags = ["documentation", "grav", "learn", "doc", "search"] 11 | features = ["documentation", "menu", "nested sections", "search", "mermaid"] 12 | min_version = 0.25 13 | 14 | [author] 15 | name = "Mathieu Cornic" 16 | homepage = "https://matcornic.github.io/" 17 | 18 | [original] 19 | name = "Grav Learn" 20 | homepage = "https://learn.getgrav.org/" 21 | repo = "https://github.com/getgrav/grav-learn" 22 | --------------------------------------------------------------------------------