├── .gitignore ├── .gitlab-ci.yml ├── 404.md ├── CNAME ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── alerts.yml ├── definitions.yml ├── glossary.yml ├── samplelist.yml ├── sidebars │ ├── home_sidebar.yml │ └── mydoc_sidebar.yml ├── strings.yml ├── tags.yml ├── terms.yml └── topnav.yml ├── _includes ├── archive.html ├── callout.html ├── custom │ ├── getting_started_series.html │ ├── getting_started_series_next.html │ ├── series_acme.html │ ├── series_acme_next.html │ ├── usermap.html │ └── usermapcomplex.html ├── disqus.html ├── feedback.html ├── footer.html ├── google_analytics.html ├── head.html ├── head_print.html ├── image.html ├── important.html ├── initialize_shuffle.html ├── inline_image.html ├── links.html ├── note.html ├── sidebar.html ├── taglogic.html ├── tip.html ├── toc.html ├── topnav.html └── warning.html ├── _layouts ├── default.html ├── default_print.html ├── none.html ├── page.html ├── page_print.html └── post.html ├── _site ├── 404.html ├── AWS-Cloud-Configuration-Security-Review-Setup-Part-1.html ├── CNAME ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── assets │ └── css │ │ └── style.css ├── aws_cloud.html ├── azure_cloud.html ├── createtag ├── css │ ├── bootstrap.min.css │ ├── boxshadowproperties.css │ ├── customstyles.css │ ├── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── modern-business.css │ ├── printstyles.css │ ├── syntax.css │ ├── theme-blue.css │ └── theme-green.css ├── docker.html ├── feed.xml ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── google_cloud.html ├── images │ ├── CCS_NSS_logo-OLD.svg │ ├── CLOUD_SECURITY_WIKI_logo.svg │ ├── NOTSOSECURE-CCS.png │ ├── NOTSOSECURE-CCS_footer logo.png │ ├── androidsdkmanagericon.png │ ├── authorizegithubscreen2.png │ ├── authorizeongithub.png │ ├── company_logo.png │ ├── company_logo1.png │ ├── company_logo2.png │ ├── company_logo_big.png │ ├── favicon.ico │ ├── helpapi-01.png │ ├── helpapi.svg │ ├── illustratoroptions.png │ ├── itermexample.png │ ├── jekyll.png │ ├── killalljekyll.png │ ├── liningup.png │ ├── notsosecure.png │ ├── notsosecure1.png │ ├── posts │ │ └── aws │ │ │ └── post-1 │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ └── workflowarrow.png ├── index.html ├── js │ ├── customscripts.js │ ├── jekyll-search.js │ ├── jquery.ba-throttle-debounce.min.js │ ├── jquery.navgoco.min.js │ ├── jquery.shuffle.min.js │ └── toc.js ├── kubernetes.html ├── search.json ├── sitemap.xml ├── tooltips.html ├── tooltips.json ├── update.sh ├── var │ └── build.sh └── vulnerable_apps.html ├── _tooltips ├── baseball.html ├── basketball.html ├── football.html └── soccer.html ├── createtag ├── css ├── bootstrap.min.css ├── boxshadowproperties.css ├── customstyles.css ├── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── modern-business.css ├── printstyles.css ├── syntax.css ├── theme-blue.css └── theme-green.css ├── feed.xml ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images ├── CCS_NSS_logo-OLD.svg ├── CLOUD_SECURITY_WIKI_logo.svg ├── NOTSOSECURE-CCS.png ├── NOTSOSECURE-CCS_footer logo.png ├── androidsdkmanagericon.png ├── authorizegithubscreen2.png ├── authorizeongithub.png ├── company_logo.png ├── company_logo1.png ├── company_logo2.png ├── company_logo_big.png ├── favicon.ico ├── helpapi-01.png ├── helpapi.svg ├── illustratoroptions.png ├── itermexample.png ├── jekyll.png ├── killalljekyll.png ├── liningup.png ├── notsosecure.png ├── notsosecure1.png ├── posts │ └── aws │ │ └── post-1 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png └── workflowarrow.png ├── index.md ├── js ├── customscripts.js ├── jekyll-search.js ├── jquery.ba-throttle-debounce.min.js ├── jquery.navgoco.min.js ├── jquery.shuffle.min.js └── toc.js ├── pages ├── mydoc │ ├── aws_cloud.md │ ├── azure_cloud.md │ ├── docker.md │ ├── google_cloud.md │ ├── kubernetes.md │ └── vulnerable_apps.md └── posts │ └── aws │ └── AWS-Cloud-Configuration-Security-Review-Setup-Part-1.md ├── search.json ├── sitemap.xml ├── tooltips.html ├── tooltips.json ├── update.sh └── var └── build.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.DS_Store -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | image: ruby:2.3 2 | 3 | variables: 4 | JEKYLL_ENV: production 5 | 6 | test: 7 | stage: test 8 | script: 9 | - sh ./var/build.sh 10 | - bundle exec jekyll build -d test 11 | artifacts: 12 | paths: 13 | - test 14 | except: 15 | - master 16 | 17 | pages: 18 | stage: deploy 19 | script: 20 | - sh ./var/build.sh 21 | - bundle exec jekyll build -d public 22 | artifacts: 23 | paths: 24 | - public 25 | only: 26 | - master 27 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" 3 | search: exclude 4 | --- 5 | 6 | Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct. 7 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | cloudsecwiki.com -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'github-pages', group: :jekyll_plugins 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (4.2.10) 5 | i18n (~> 0.7) 6 | minitest (~> 5.1) 7 | thread_safe (~> 0.3, >= 0.3.4) 8 | tzinfo (~> 1.1) 9 | addressable (2.5.2) 10 | public_suffix (>= 2.0.2, < 4.0) 11 | coffee-script (2.4.1) 12 | coffee-script-source 13 | execjs 14 | coffee-script-source (1.11.1) 15 | colorator (1.1.0) 16 | commonmarker (0.17.13) 17 | ruby-enum (~> 0.5) 18 | concurrent-ruby (1.1.3) 19 | dnsruby (1.61.2) 20 | addressable (~> 2.5) 21 | em-websocket (0.5.1) 22 | eventmachine (>= 0.12.9) 23 | http_parser.rb (~> 0.6.0) 24 | ethon (0.11.0) 25 | ffi (>= 1.3.0) 26 | eventmachine (1.2.7) 27 | eventmachine (1.2.7-x86-mingw32) 28 | execjs (2.7.0) 29 | faraday (0.15.3) 30 | multipart-post (>= 1.2, < 3) 31 | ffi (1.9.25) 32 | ffi (1.9.25-x86-mingw32) 33 | forwardable-extended (2.6.0) 34 | gemoji (3.0.0) 35 | github-pages (192) 36 | activesupport (= 4.2.10) 37 | github-pages-health-check (= 1.8.1) 38 | jekyll (= 3.7.4) 39 | jekyll-avatar (= 0.6.0) 40 | jekyll-coffeescript (= 1.1.1) 41 | jekyll-commonmark-ghpages (= 0.1.5) 42 | jekyll-default-layout (= 0.1.4) 43 | jekyll-feed (= 0.10.0) 44 | jekyll-gist (= 1.5.0) 45 | jekyll-github-metadata (= 2.9.4) 46 | jekyll-mentions (= 1.4.1) 47 | jekyll-optional-front-matter (= 0.3.0) 48 | jekyll-paginate (= 1.1.0) 49 | jekyll-readme-index (= 0.2.0) 50 | jekyll-redirect-from (= 0.14.0) 51 | jekyll-relative-links (= 0.5.3) 52 | jekyll-remote-theme (= 0.3.1) 53 | jekyll-sass-converter (= 1.5.2) 54 | jekyll-seo-tag (= 2.5.0) 55 | jekyll-sitemap (= 1.2.0) 56 | jekyll-swiss (= 0.4.0) 57 | jekyll-theme-architect (= 0.1.1) 58 | jekyll-theme-cayman (= 0.1.1) 59 | jekyll-theme-dinky (= 0.1.1) 60 | jekyll-theme-hacker (= 0.1.1) 61 | jekyll-theme-leap-day (= 0.1.1) 62 | jekyll-theme-merlot (= 0.1.1) 63 | jekyll-theme-midnight (= 0.1.1) 64 | jekyll-theme-minimal (= 0.1.1) 65 | jekyll-theme-modernist (= 0.1.1) 66 | jekyll-theme-primer (= 0.5.3) 67 | jekyll-theme-slate (= 0.1.1) 68 | jekyll-theme-tactile (= 0.1.1) 69 | jekyll-theme-time-machine (= 0.1.1) 70 | jekyll-titles-from-headings (= 0.5.1) 71 | jemoji (= 0.10.1) 72 | kramdown (= 1.17.0) 73 | liquid (= 4.0.0) 74 | listen (= 3.1.5) 75 | mercenary (~> 0.3) 76 | minima (= 2.5.0) 77 | nokogiri (>= 1.8.2, < 2.0) 78 | rouge (= 2.2.1) 79 | terminal-table (~> 1.4) 80 | github-pages-health-check (1.8.1) 81 | addressable (~> 2.3) 82 | dnsruby (~> 1.60) 83 | octokit (~> 4.0) 84 | public_suffix (~> 2.0) 85 | typhoeus (~> 1.3) 86 | html-pipeline (2.9.0) 87 | activesupport (>= 2) 88 | nokogiri (>= 1.4) 89 | http_parser.rb (0.6.0) 90 | i18n (0.9.5) 91 | concurrent-ruby (~> 1.0) 92 | jekyll (3.7.4) 93 | addressable (~> 2.4) 94 | colorator (~> 1.0) 95 | em-websocket (~> 0.5) 96 | i18n (~> 0.7) 97 | jekyll-sass-converter (~> 1.0) 98 | jekyll-watch (~> 2.0) 99 | kramdown (~> 1.14) 100 | liquid (~> 4.0) 101 | mercenary (~> 0.3.3) 102 | pathutil (~> 0.9) 103 | rouge (>= 1.7, < 4) 104 | safe_yaml (~> 1.0) 105 | jekyll-avatar (0.6.0) 106 | jekyll (~> 3.0) 107 | jekyll-coffeescript (1.1.1) 108 | coffee-script (~> 2.2) 109 | coffee-script-source (~> 1.11.1) 110 | jekyll-commonmark (1.2.0) 111 | commonmarker (~> 0.14) 112 | jekyll (>= 3.0, < 4.0) 113 | jekyll-commonmark-ghpages (0.1.5) 114 | commonmarker (~> 0.17.6) 115 | jekyll-commonmark (~> 1) 116 | rouge (~> 2) 117 | jekyll-default-layout (0.1.4) 118 | jekyll (~> 3.0) 119 | jekyll-feed (0.10.0) 120 | jekyll (~> 3.3) 121 | jekyll-gist (1.5.0) 122 | octokit (~> 4.2) 123 | jekyll-github-metadata (2.9.4) 124 | jekyll (~> 3.1) 125 | octokit (~> 4.0, != 4.4.0) 126 | jekyll-mentions (1.4.1) 127 | html-pipeline (~> 2.3) 128 | jekyll (~> 3.0) 129 | jekyll-optional-front-matter (0.3.0) 130 | jekyll (~> 3.0) 131 | jekyll-paginate (1.1.0) 132 | jekyll-readme-index (0.2.0) 133 | jekyll (~> 3.0) 134 | jekyll-redirect-from (0.14.0) 135 | jekyll (~> 3.3) 136 | jekyll-relative-links (0.5.3) 137 | jekyll (~> 3.3) 138 | jekyll-remote-theme (0.3.1) 139 | jekyll (~> 3.5) 140 | rubyzip (>= 1.2.1, < 3.0) 141 | jekyll-sass-converter (1.5.2) 142 | sass (~> 3.4) 143 | jekyll-seo-tag (2.5.0) 144 | jekyll (~> 3.3) 145 | jekyll-sitemap (1.2.0) 146 | jekyll (~> 3.3) 147 | jekyll-swiss (0.4.0) 148 | jekyll-theme-architect (0.1.1) 149 | jekyll (~> 3.5) 150 | jekyll-seo-tag (~> 2.0) 151 | jekyll-theme-cayman (0.1.1) 152 | jekyll (~> 3.5) 153 | jekyll-seo-tag (~> 2.0) 154 | jekyll-theme-dinky (0.1.1) 155 | jekyll (~> 3.5) 156 | jekyll-seo-tag (~> 2.0) 157 | jekyll-theme-hacker (0.1.1) 158 | jekyll (~> 3.5) 159 | jekyll-seo-tag (~> 2.0) 160 | jekyll-theme-leap-day (0.1.1) 161 | jekyll (~> 3.5) 162 | jekyll-seo-tag (~> 2.0) 163 | jekyll-theme-merlot (0.1.1) 164 | jekyll (~> 3.5) 165 | jekyll-seo-tag (~> 2.0) 166 | jekyll-theme-midnight (0.1.1) 167 | jekyll (~> 3.5) 168 | jekyll-seo-tag (~> 2.0) 169 | jekyll-theme-minimal (0.1.1) 170 | jekyll (~> 3.5) 171 | jekyll-seo-tag (~> 2.0) 172 | jekyll-theme-modernist (0.1.1) 173 | jekyll (~> 3.5) 174 | jekyll-seo-tag (~> 2.0) 175 | jekyll-theme-primer (0.5.3) 176 | jekyll (~> 3.5) 177 | jekyll-github-metadata (~> 2.9) 178 | jekyll-seo-tag (~> 2.0) 179 | jekyll-theme-slate (0.1.1) 180 | jekyll (~> 3.5) 181 | jekyll-seo-tag (~> 2.0) 182 | jekyll-theme-tactile (0.1.1) 183 | jekyll (~> 3.5) 184 | jekyll-seo-tag (~> 2.0) 185 | jekyll-theme-time-machine (0.1.1) 186 | jekyll (~> 3.5) 187 | jekyll-seo-tag (~> 2.0) 188 | jekyll-titles-from-headings (0.5.1) 189 | jekyll (~> 3.3) 190 | jekyll-watch (2.1.2) 191 | listen (~> 3.0) 192 | jemoji (0.10.1) 193 | gemoji (~> 3.0) 194 | html-pipeline (~> 2.2) 195 | jekyll (~> 3.0) 196 | kramdown (1.17.0) 197 | liquid (4.0.0) 198 | listen (3.1.5) 199 | rb-fsevent (~> 0.9, >= 0.9.4) 200 | rb-inotify (~> 0.9, >= 0.9.7) 201 | ruby_dep (~> 1.2) 202 | mercenary (0.3.6) 203 | mini_portile2 (2.3.0) 204 | minima (2.5.0) 205 | jekyll (~> 3.5) 206 | jekyll-feed (~> 0.9) 207 | jekyll-seo-tag (~> 2.1) 208 | minitest (5.11.3) 209 | multipart-post (2.0.0) 210 | nokogiri (1.8.5) 211 | mini_portile2 (~> 2.3.0) 212 | nokogiri (1.8.5-x86-mingw32) 213 | mini_portile2 (~> 2.3.0) 214 | octokit (4.13.0) 215 | sawyer (~> 0.8.0, >= 0.5.3) 216 | pathutil (0.16.2) 217 | forwardable-extended (~> 2.6) 218 | public_suffix (2.0.5) 219 | rb-fsevent (0.10.3) 220 | rb-inotify (0.9.10) 221 | ffi (>= 0.5.0, < 2) 222 | rouge (2.2.1) 223 | ruby-enum (0.7.2) 224 | i18n 225 | ruby_dep (1.5.0) 226 | rubyzip (1.2.2) 227 | safe_yaml (1.0.4) 228 | sass (3.7.2) 229 | sass-listen (~> 4.0.0) 230 | sass-listen (4.0.0) 231 | rb-fsevent (~> 0.9, >= 0.9.4) 232 | rb-inotify (~> 0.9, >= 0.9.7) 233 | sawyer (0.8.1) 234 | addressable (>= 2.3.5, < 2.6) 235 | faraday (~> 0.8, < 1.0) 236 | terminal-table (1.8.0) 237 | unicode-display_width (~> 1.1, >= 1.1.1) 238 | thread_safe (0.3.6) 239 | typhoeus (1.3.1) 240 | ethon (>= 0.9.0) 241 | tzinfo (1.2.5) 242 | thread_safe (~> 0.1) 243 | unicode-display_width (1.4.0) 244 | 245 | PLATFORMS 246 | ruby 247 | x86-mingw32 248 | 249 | DEPENDENCIES 250 | github-pages 251 | 252 | BUNDLED WITH 253 | 1.17.1 254 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Github Pages uses above Jekyll Files to generate site contents. 2 | 3 | All pages are located at [pages/mydoc/](https://github.com/NotSoSecure/cloud-sec-wiki/tree/gh-pages/pages/mydoc) 4 | 5 | Copyright 2019 NotSoSecure Global Services Limited 6 | 7 | Licensed under the Apache License, Version 2.0 (the "License"); 8 | you may not use this file except in compliance with the License. 9 | You may obtain a copy of the License at 10 | 11 | http://www.apache.org/licenses/LICENSE-2.0 12 | 13 | Unless required by applicable law or agreed to in writing, software 14 | distributed under the License is distributed on an "AS IS" BASIS, 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | See the License for the specific language governing permissions and 17 | limitations under the License. 18 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | repository: 2 | 3 | output: web 4 | # this property is useful for conditional filtering of content that is separate from the PDF. 5 | 6 | topnav_title: Cloud Security Wiki 7 | # this appears on the top navigation bar next to the home button 8 | 9 | site_title: Cloud Security Wiki 10 | # this appears in the html browser tab for the site title (seen mostly by search engines, not users) 11 | 12 | company_name: NotSoSecure - A Claranet Group Company 13 | # this appears in the footer 14 | 15 | github_editme_path: notsosecure/cloud-sec-wiki/blob/gh-pages/ 16 | # if you're using Github, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank. 17 | 18 | # gitlab_editme_path: tomjoht/documentation-theme-jekyll/blob/gh-pages/ 19 | # if you're using GitLab, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank. 20 | 21 | disqus_shortname: 22 | # if you're using disqus for comments, add the shortname here. if not, leave this value blank. 23 | 24 | google_analytics: UA-150383569-1 25 | # if you have google-analytics ID, put it in. if not, edit this value to blank. 26 | 27 | host: 127.0.0.1 28 | # the preview server used. Leave as is. 29 | 30 | port: 4000 31 | # the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006. 32 | 33 | exclude: 34 | - .idea/ 35 | - .gitignore 36 | # these are the files and directories that jekyll will exclude from the build 37 | 38 | feedback_subject_line: Cloud Security Wiki Feedback 39 | 40 | feedback_email: cloudsecwiki@notsosecure.com 41 | # used as a contact email for the Feedback link in the top navigation bar 42 | 43 | # feedback_disable: true 44 | # if you uncomment the previous line, the Feedback link gets removed 45 | 46 | # feedback_text: "Need help?" 47 | # if you uncomment the previous line, it changes the Feedback text 48 | 49 | # feedback_link: "http://helpy.io/" 50 | # if you uncomment the previous line, it changes where the feedback link points to 51 | 52 | highlighter: rouge 53 | # library used for syntax highlighting 54 | 55 | markdown: kramdown 56 | kramdown: 57 | input: GFM 58 | auto_ids: true 59 | hard_wrap: false 60 | syntax_highlighter: rouge 61 | 62 | # filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways 63 | 64 | collections: 65 | tooltips: 66 | output: false 67 | 68 | 69 | # collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true 70 | 71 | defaults: 72 | - 73 | scope: 74 | path: "" 75 | type: "pages" 76 | values: 77 | layout: "page" 78 | comments: true 79 | search: true 80 | sidebar: home_sidebar 81 | topnav: topnav 82 | - 83 | scope: 84 | path: "" 85 | type: "tooltips" 86 | values: 87 | layout: "page" 88 | comments: true 89 | search: true 90 | tooltip: true 91 | 92 | - 93 | scope: 94 | path: "" 95 | type: "posts" 96 | values: 97 | layout: "post" 98 | comments: true 99 | search: true 100 | sidebar: home_sidebar 101 | topnav: topnav 102 | 103 | # these are defaults used for the frontmatter for these file types 104 | 105 | sidebars: 106 | - home_sidebar 107 | - mydoc_sidebar 108 | - posts_sidebar 109 | - product1_sidebar 110 | - product2_sidebar 111 | - other 112 | 113 | 114 | description: "Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features." 115 | # the description is used in the feed.xml file 116 | 117 | # needed for sitemap.xml file only 118 | # url: http://idratherbewriting.com 119 | # baseurl: /documentation-theme-jekyll 120 | -------------------------------------------------------------------------------- /_data/alerts.yml: -------------------------------------------------------------------------------- 1 | tip: '