├── .nojekyll ├── .nvmrc ├── Dockerfile ├── netlify.toml ├── content ├── blog │ ├── news │ │ ├── 庆祝pages+actions成功.md │ │ ├── _index.md │ │ ├── first-post │ │ │ ├── featured-sunset-get.png │ │ │ └── index.md │ │ └── second-post.md │ ├── releases │ │ ├── _index.md │ │ └── in-depth-monoliths-detailed-spec.md │ └── _index.md ├── search.md ├── featured-background.jpg ├── about │ ├── featured-background.jpg │ └── _index.html ├── community │ └── _index.md ├── docs │ ├── 1-Site │ │ ├── _index.md │ │ ├── create_site.md │ │ ├── actions_pages.md │ │ └── add_content.md │ ├── 4-Cloud │ │ ├── _index.md │ │ ├── Containers │ │ │ └── _index.md │ │ └── Openshift │ │ │ └── _index.md │ ├── 5-Blockchain │ │ └── _index.md │ ├── 2-Infra │ │ ├── Network │ │ │ ├── Ponycopters │ │ │ │ ├── _index.md │ │ │ │ ├── launching-ponycopters.md │ │ │ │ └── configuring-ponycopters.md │ │ │ ├── _index.md │ │ │ ├── task.md │ │ │ ├── beds.md │ │ │ └── porridge.md │ │ ├── _index.md │ │ └── Linux │ │ │ └── linux.md │ ├── 3-DevOps │ │ ├── _index.md │ │ ├── tutorial2.md │ │ └── multi-bear.md │ ├── Reference │ │ ├── _index.md │ │ └── parameter-reference.md │ ├── _index.md │ ├── 6-RPA │ │ └── _index.md │ └── Contribution │ │ └── _index.md └── _index.html ├── .gitignore ├── assets ├── icons │ └── logo.png └── scss │ └── _variables_project.scss ├── .gitmodules ├── docker-compose.yaml ├── .github ├── dependabot.yml └── workflows │ └── gh-pages.yml ├── layouts ├── 404.html ├── community │ └── list.html └── partials │ └── page-meta-links.html ├── package.json ├── deploy.sh ├── CONTRIBUTING.md ├── i18n └── zh-cn.toml ├── README.md ├── config.toml └── LICENSE /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM klakegg/hugo:ext-alpine 2 | 3 | RUN apk add git 4 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | [build.environment] 3 | HUGO_VERSION = "0.88.1" 4 | -------------------------------------------------------------------------------- /content/blog/news/庆祝pages+actions成功.md: -------------------------------------------------------------------------------- 1 | # nothing 2 | 3 | pages是pages,action是actions。 -------------------------------------------------------------------------------- /content/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | resources/ 3 | node_modules/ 4 | package-lock.json 5 | .hugo_build.lock -------------------------------------------------------------------------------- /assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoping378/docsy/master/assets/icons/logo.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | [submodule "themes/docsy"] 3 | path = themes/docsy 4 | url = https://github.com/google/docsy 5 | -------------------------------------------------------------------------------- /content/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoping378/docsy/master/content/featured-background.jpg -------------------------------------------------------------------------------- /assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Add styles or override variables from the theme here. 4 | 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /content/blog/news/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "News About Docsy" 4 | linkTitle: "News" 5 | weight: 20 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/about/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoping378/docsy/master/content/about/featured-background.jpg -------------------------------------------------------------------------------- /content/blog/releases/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "New Releases" 4 | linkTitle: "Releases" 5 | weight: 20 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/blog/news/first-post/featured-sunset-get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoping378/docsy/master/content/blog/news/first-post/featured-sunset-get.png -------------------------------------------------------------------------------- /content/community/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 社区 3 | menu: 4 | main: 5 | weight: 40 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/docs/1-Site/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "站点" 3 | linkTitle: "站点介绍" 4 | weight: 1 5 | description: > 6 | 主要是本站点的搭建和添加文档的全流程介绍. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | 按先后顺序,记录本站点的不断完善之旅。 11 | {{% /pageinfo %}} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /content/docs/1-Site/create_site.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "站点搭建方法" 3 | linkTitle: "站点搭建方法" 4 | weight: 1 5 | description: > 6 | 介绍本站点搭建方法. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | 主要涉及到hugo和docsy主题的介绍。 11 | {{% /pageinfo %}} 12 | 13 | ## 待编写 14 | 15 | ... -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | version: "3.3" 2 | 3 | services: 4 | 5 | site: 6 | image: docsy/docsy-example 7 | build: 8 | context: . 9 | command: server 10 | ports: 11 | - "1313:1313" 12 | volumes: 13 | - .:/src 14 | -------------------------------------------------------------------------------- /content/docs/1-Site/actions_pages.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "自动托管markdown" 3 | linkTitle: "自动托管markdown" 4 | weight: 2 5 | description: > 6 | 描述如何利用github的CI/CD实现自动更新站点。 7 | --- 8 | 9 | {{% pageinfo %}} 10 | 利用github actions和pages实现自动更新托管内容。 11 | {{% /pageinfo %}} 12 | 13 | ## 待编写 14 | 。。。 -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "博客" 3 | linkTitle: "博客" 4 | menu: 5 | main: 6 | weight: 30 7 | --- 8 | 9 | 10 | This is the **blog** section. It has two categories: News and Releases. 11 | 12 | Files in these directories will be listed in reverse chronological order. 13 | 14 | -------------------------------------------------------------------------------- /content/docs/1-Site/add_content.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "编写文章注意项" 3 | linkTitle: "编写文章注意项" 4 | weight: 2 5 | description: > 6 | 描述如何添加文章,和主题美化相关的技巧。 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | ## 待编写 14 | 15 | ... -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: '20:00' 8 | open-pull-requests-limit: 10 9 | - package-ecosystem: bundler 10 | directory: "/" 11 | schedule: 12 | interval: daily 13 | time: '20:00' 14 | open-pull-requests-limit: 10 15 | -------------------------------------------------------------------------------- /content/docs/4-Cloud/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "云计算" 3 | linkTitle: "云计算" 4 | weight: 4 5 | description: > 6 | 云计算界还在不断向前发展,持续更新认知。 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | 自15年开始接触容器,当时容器就是Docker,Docker就是容器,当然现在docker仍是主流的容器runtime方案,随着k8s的规模落地,生态也在潜移默化的变化着,此篇会把以前编写的一些文章挪移到此处,顺便开启新的认知。 14 | 15 | 16 | -------------------------------------------------------------------------------- /content/docs/4-Cloud/Containers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "容器篇" 3 | linkTitle: "容器篇" 4 | weight: 1 5 | description: > 6 | 容器基础界还在不断向前发展,持续更新认知。 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | 自15年开始接触容器,当时容器就是Docker,Docker就是容器,当然现在docker仍是主流的容器runtime方案,随着k8s的规模落地,生态也在潜移默化的变化着,此篇会把以前编写的一些文章挪移到此处,顺便开启新的认知。 14 | 15 | 16 | -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main"}} 2 |
3 |
4 |

Not found

5 |

Oops! This page doesn't exist. Try going back to our home page.

6 | 7 |

You can learn how to make a 404 page like this in Custom 404 Pages.

8 |
9 |
10 | {{ end }} 11 | -------------------------------------------------------------------------------- /content/docs/4-Cloud/Openshift/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Openshift" 3 | linkTitle: "Openshift" 4 | weight: 1 5 | description: > 6 | 红帽家的k8s发行版,在往容器云PaaS平台方向演进。 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | 自15年开始接触容器,当时容器就是Docker,Docker就是容器,当然现在docker仍是主流的容器runtime方案,随着k8s的规模落地,生态也在潜移默化的变化着,此篇会把以前编写的一些文章挪移到此处,顺便开启新的认知。 14 | 15 | 16 | -------------------------------------------------------------------------------- /content/docs/5-Blockchain/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "区块链" 4 | linkTitle: "区块链" 5 | weight: 5 6 | date: 2017-01-05 7 | description: > 8 | 区块链领域的所思所为! 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Do you have any example **applications** or **code** for your users in your repo or elsewhere? Link to your examples here. 16 | 17 | 18 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/Ponycopters/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Working with Ponycopters" 4 | linkTitle: "Working with Ponycopters" 5 | date: 2017-01-05 6 | description: > 7 | A short lead description about this section page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page. Replace it with your own content. 12 | {{% /pageinfo %}} 13 | 14 | 15 | This is the section landing page. 16 | 17 | -------------------------------------------------------------------------------- /layouts/community/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 |
5 |
6 | 7 |

欢迎访问 {{ .Site.Title }} 社区

8 | 9 |

不能称之为社区,仅留了些个人联系方式. 10 | 11 |

12 |
13 | {{ partial "community_links.html" . }} 14 | 15 |
16 | {{ .Content }} 17 |
18 | 19 | {{ end }} 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tech-doc-hugo", 3 | "version": "0.0.1", 4 | "description": "Hugo theme for technical documentation.", 5 | "main": "none.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/google/docsy-example.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/google/docsy-example/issues" 17 | }, 18 | "homepage": "https://github.com/google/docsy-example#readme", 19 | "devDependencies": { 20 | "autoprefixer": "^10.4.0", 21 | "postcss": "^8.3.7", 22 | "postcss-cli": "^9.0.2" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #Copyright 2018 Google LLC 2 | # 3 | #Licensed under the Apache License, Version 2.0 (the "License"); 4 | #you may not use this file except in compliance with the License. 5 | #You may obtain a copy of the License at 6 | # 7 | # https://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | #Unless required by applicable law or agreed to in writing, software 10 | #distributed under the License is distributed on an "AS IS" BASIS, 11 | #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | #See the License for the specific language governing permissions and 13 | #limitations under the License. 14 | # 15 | rm -rf public/ 16 | HUGO_ENV="production" hugo --gc || exit 1 17 | s3deploy -source=public/ -region=eu-west-1 -bucket=bep.is -distribution-id=E8OKNT7W9ZYZ2 -path temp/td 18 | -------------------------------------------------------------------------------- /content/about/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: 本站介绍 3 | linkTitle: 关于 4 | menu: 5 | main: 6 | weight: 10 7 | 8 | --- 9 | 10 | 11 | {{< blocks/cover title="小平专栏" image_anchor="bottom" height="min" >}} 12 | 13 |

本站点使用 Docsy Hugo主题搭建,并托管于github pages. 14 |

15 | 16 | {{< /blocks/cover >}} 17 | 18 | {{% blocks/lead %}} 19 | 本站使用 Docsy Hugo主题搭建,日常Markdown编写,**hugo server**本地预览,利用github actions自动编译推送的md文件,之后自动部署到pages上托管。 20 | {{% /blocks/lead %}} 21 | 22 | 23 | {{< blocks/section >}} 24 |
25 |

搭建方案介绍,详见 26 | 文档连接 27 | 28 |

29 | 30 |
31 | 32 | {{< /blocks/section >}} 33 | 34 | 35 | 36 | 43 | -------------------------------------------------------------------------------- /content/docs/3-DevOps/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Dev|Ops" 4 | linkTitle: "Dev|Ops" 5 | weight: 3 6 | date: 2017-01-04 7 | description: > 8 | Show your user how to work through some end to end examples. 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Tutorials are **complete worked examples** made up of **multiple tasks** that guide the user through a relatively simple but realistic scenario: building an application that uses some of your project’s features, for example. If you have already created some Examples for your project you can base Tutorials on them. This section is **optional**. However, remember that although you may not need this section at first, having tutorials can be useful to help your users engage with your example code, especially if there are aspects that need more explanation than you can easily provide in code comments. 16 | 17 | -------------------------------------------------------------------------------- /content/docs/Reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "其他推荐" 3 | linkTitle: "其他推荐" 4 | weight: 9 5 | description: > 6 | Low level reference docs for your project. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page that shows you how to use this template site. 11 | {{% /pageinfo %}} 12 | 13 | If your project has an API, configuration, or other reference - anything that users need to look up that’s at an even lower level than a single task - put (or link to it) here. You can serve and link to generated reference docs created using Doxygen, 14 | Javadoc, or other doc generation tools by putting them in your `static/` directory. Find out more in [Adding static content](https://docsy.dev/docs/adding-content/content/#adding-static-content). For OpenAPI reference, Docsy also provides a [Swagger UI layout and shortcode](https://www.docsy.dev/docs/adding-content/shortcodes/#swaggerui) that renders [Swagger UI](https://swagger.io/tools/swagger-ui/) using any OpenAPI YAML or JSON file as source. 15 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution; 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows 28 | [Google's Open Source Community Guidelines](https://opensource.google.com/conduct/). 29 | -------------------------------------------------------------------------------- /i18n/zh-cn.toml: -------------------------------------------------------------------------------- 1 | # Used in sentences such as "All Tags" 2 | [ui_all] 3 | other = "所有" 4 | 5 | # UI strings. Buttons and similar. 6 | 7 | [ui_pager_prev] 8 | other = "上一页" 9 | 10 | [ui_pager_next] 11 | other = "下一页" 12 | 13 | [ui_read_more] 14 | other = "更多" 15 | 16 | [ui_search] 17 | other = "站内搜索…" 18 | 19 | # Used in sentences such as "Posted in News" 20 | [ui_in] 21 | other = "in" 22 | 23 | # Footer text 24 | [footer_all_rights_reserved] 25 | other = "保留所有权利" 26 | 27 | [footer_privacy_policy] 28 | other = "隐私政策" 29 | 30 | 31 | # Post (blog, articles etc.) 32 | [post_byline_by] 33 | other = "By" 34 | [post_created] 35 | other = "创建" 36 | [post_last_mod] 37 | other = "最后修改" 38 | [post_edit_this] 39 | other = "编辑此页" 40 | [post_view_this] 41 | other = "查看页面源码" 42 | [post_create_child_page] 43 | other = "添加子页面" 44 | [post_create_issue] 45 | other = "提交文档问题" 46 | [post_create_project_issue] 47 | other = "提交项目问题" 48 | [post_posts_in] 49 | other = "Posts in" 50 | [post_reading_time] 51 | other = "分钟阅读" 52 | [post_less_than_a_minute_read] 53 | other = "少于1分钟" 54 | 55 | # Print support 56 | [print_printable_section] 57 | other = "这是本节的多页打印视图。" 58 | [print_click_to_print] 59 | other = "点击此处打印" 60 | [print_show_regular] 61 | other = "返回本页常规视图" 62 | [print_entire_section] 63 | other = "整节打印" 64 | -------------------------------------------------------------------------------- /content/docs/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "文档" 4 | linkTitle: "文档" 5 | weight: 20 6 | menu: 7 | main: 8 | weight: 20 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | 16 | This section is where the user documentation for your project lives - all the information your users need to understand and successfully use your project. 17 | 18 | For large documentation sets we recommend adding content under the headings in this section, though if some or all of them don’t apply to your project feel free to remove them or add your own. You can see an example of a smaller Docsy documentation site in the [Docsy User Guide](https://docsy.dev/docs/), which lives in the [Docsy theme repo](https://github.com/google/docsy/tree/master/userguide) if you'd like to copy its docs section. 19 | 20 | Other content such as marketing material, case studies, and community updates should live in the [About](../about/) and [Community](../community/) pages. 21 | 22 | Find out how to use the Docsy theme in the [Docsy User Guide](https://docsy.dev/docs/). You can learn more about how to organize your documentation (and how we organized this site) in [Organizing Your Content](https://docsy.dev/docs/best-practices/organizing-content/). 23 | 24 | 25 | -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- 1 | name: GitHub Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - master # Set a branch to deploy 7 | pull_request: 8 | 9 | jobs: 10 | deploy: 11 | runs-on: ubuntu-20.04 12 | concurrency: 13 | group: ${{ github.workflow }}-${{ github.ref }} 14 | steps: 15 | - uses: actions/checkout@v2 16 | with: 17 | submodules: recursive # Fetch the Docsy theme 18 | fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod 19 | 20 | - name: Setup Hugo 21 | uses: peaceiris/actions-hugo@v2 22 | with: 23 | hugo-version: '0.91.2' 24 | extended: true 25 | 26 | - name: Setup Node 27 | uses: actions/setup-node@v2 28 | with: 29 | node-version: '14' 30 | 31 | - name: Cache dependencies 32 | uses: actions/cache@v2 33 | with: 34 | path: ~/.npm 35 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} 36 | restore-keys: | 37 | ${{ runner.os }}-node- 38 | 39 | - run: npm install 40 | - run: hugo --minify 41 | 42 | - name: Deploy 43 | uses: peaceiris/actions-gh-pages@v3 44 | if: ${{ github.ref == 'refs/heads/master' }} 45 | with: 46 | github_token: ${{ secrets.GITHUB_TOKEN }} -------------------------------------------------------------------------------- /content/docs/6-RPA/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: ["rpa"] 3 | title: "RPA机器人" 4 | linkTitle: "RPA机器人" 5 | weight: 6 6 | description: > 7 | What does your user need to know to try your project? 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page that shows you how to use this template site. 12 | {{% /pageinfo %}} 13 | 14 | Information in this section helps your user try your project themselves. 15 | 16 | * What do your users need to do to start using your project? This could include downloading/installation instructions, including any prerequisites or system requirements. 17 | 18 | * Introductory “Hello World” example, if appropriate. More complex tutorials should live in the Tutorials section. 19 | 20 | Consider using the headings below for your getting started page. You can delete any that are not applicable to your project. 21 | 22 | ## Prerequisites 23 | 24 | Are there any system requirements for using your project? What languages are supported (if any)? Do users need to already have any software or tools installed? 25 | 26 | ## Installation 27 | 28 | Where can your user find your project code? How can they install it (binaries, installable package, build from source)? Are there multiple options/versions they can install and how should they choose the right one for them? 29 | 30 | ## Setup 31 | 32 | Is there any initial setup users need to do after installation to try your project? 33 | 34 | ## Try it out! 35 | 36 | Can your users test their installation, for example by running a command or deploying a Hello World example? 37 | -------------------------------------------------------------------------------- /content/docs/2-Infra/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: ["linux","基础"] 3 | title: "基础知识" 4 | linkTitle: "基础知识" 5 | weight: 2 6 | description: > 7 | What does your user need to know to try your project? 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page that shows you how to use this template site. 12 | {{% /pageinfo %}} 13 | 14 | Information in this section helps your user try your project themselves. 15 | 16 | * What do your users need to do to start using your project? This could include downloading/installation instructions, including any prerequisites or system requirements. 17 | 18 | * Introductory “Hello World” example, if appropriate. More complex tutorials should live in the Tutorials section. 19 | 20 | Consider using the headings below for your getting started page. You can delete any that are not applicable to your project. 21 | 22 | ## Prerequisites 23 | 24 | Are there any system requirements for using your project? What languages are supported (if any)? Do users need to already have any software or tools installed? 25 | 26 | ## Installation 27 | 28 | Where can your user find your project code? How can they install it (binaries, installable package, build from source)? Are there multiple options/versions they can install and how should they choose the right one for them? 29 | 30 | ## Setup 31 | 32 | Is there any initial setup users need to do after installation to try your project? 33 | 34 | ## Try it out! 35 | 36 | Can your users test their installation, for example by running a command or deploying a Hello World example? 37 | -------------------------------------------------------------------------------- /content/blog/news/first-post/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2018-10-06 3 | title: "Easy documentation with Docsy" 4 | linkTitle: "Announcing Docsy" 5 | description: "The Docsy Hugo theme lets project maintainers and contributors focus on content, not on reinventing a website infrastructure from scratch" 6 | author: Riona MacNamara ([@rionam](https://twitter.com/bepsays)) 7 | resources: 8 | - src: "**.{png,jpg}" 9 | title: "Image #:counter" 10 | params: 11 | byline: "Photo: Riona MacNamara / CC-BY-CA" 12 | --- 13 | 14 | **This is a typical blog post that includes images.** 15 | 16 | The front matter specifies the date of the blog post, its title, a short description that will be displayed on the blog landing page, and its author. 17 | 18 | ## Including images 19 | 20 | Here's an image (`featured-sunset-get.png`) that includes a byline and a caption. 21 | 22 | {{< imgproc sunset Fill "600x300" >}} 23 | Fetch and scale an image in the upcoming Hugo 0.43. 24 | {{< /imgproc >}} 25 | 26 | The front matter of this post specifies properties to be assigned to all image resources: 27 | 28 | ``` 29 | resources: 30 | - src: "**.{png,jpg}" 31 | title: "Image #:counter" 32 | params: 33 | byline: "Photo: Riona MacNamara / CC-BY-CA" 34 | ``` 35 | 36 | To include the image in a page, specify its details like this: 37 | 38 | ``` 39 | {{< imgproc sunset Fill "600x300" >}} 40 | Fetch and scale an image in the upcoming Hugo 0.43. 41 | {{< /imgproc >}} 42 | ``` 43 | 44 | The image will be rendered at the size and byline specified in the front matter. 45 | 46 | 47 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/_index.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "网络篇" 4 | linkTitle: "网络篇" 5 | weight: 6 6 | date: 2017-01-05 7 | description: > 8 | What can your user do with your project? 9 | --- 10 | 11 | {{% pageinfo %}} 12 | This is a placeholder page that shows you how to use this template site. 13 | {{% /pageinfo %}} 14 | 15 | Think about your project’s features and use cases. Use these to choose your core tasks. Each granular use case (enable x, configure y) should have a corresponding tasks page or tasks page section. Users should be able to quickly refer to your core tasks when they need to find out how to do one specific thing, rather than having to look for the instructions in a bigger tutorial or example. Think of your tasks pages as a cookbook with different procedures your users can combine to create something more substantial. 16 | 17 | You can give each task a page, or you can group related tasks together in a page, such as tasks related to a particular feature. As well as grouping related tasks in single pages, you can also group task pages in nested folders with an index page as an overview, as seen in this example site. Or if you have a small docset like the [Docsy User Guide](https://docsy.dev/docs/) with no Tutorials or Concepts pages, consider adding your feature-specific pages at the top level of your docs rather than in a Tasks section. 18 | 19 | Each task should give the user 20 | 21 | * The prerequisites for this task, if any (this can be specified at the top of a multi-task page if they're the same for all the page's tasks. "All these tasks assume that you understand....and that you have already...."). 22 | * What this task accomplishes. 23 | * Instructions for the task. If it involves editing a file, running a command, or writing code, provide code-formatted example snippets to show the user what to do! If there are multiple steps, provide them as a numbered list. 24 | * If appropriate, links to related concept, tutorial, or example pages. 25 | 26 | [Community](./Ponycopters) 27 | 28 | -------------------------------------------------------------------------------- /content/_index.html: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "小平专栏" 3 | linkTitle = "小平专栏" 4 | 5 | +++ 6 | 7 | {{< blocks/cover title="知行合一,与君共勉" image_anchor="top" height="full" color="orange" >}} 8 |
9 | }}"> 10 | 在线阅读 11 | 12 | 13 | 打包下载 14 | 15 |

不用往下滑!

16 | {{< blocks/link-down color="info" >}} 17 |
18 | {{< /blocks/cover >}} 19 | 20 | 21 | {{% blocks/lead color="primary" %}} 22 | 说了你还不听... 没东西的,觉得这个主题首页样式不错,就留下了。 23 | {{% /blocks/lead %}} 24 | 25 | {{< blocks/section color="dark" >}} 26 | {{% blocks/feature icon="fa-lightbulb" title="New chair metrics!" %}} 27 | The Goldydocs UI now shows chair size metrics by default. 28 | 29 | Please follow this space for updates! 30 | {{% /blocks/feature %}} 31 | 32 | 33 | {{% blocks/feature icon="fab fa-github" title="欢迎投稿贡献!" url="https://github.com/google/docsy-example" %}} 34 | We do a [Pull Request](https://github.com/xiaoping378/docsy/pulls) contributions workflow on **GitHub**. New users are always welcome! 35 | {{% /blocks/feature %}} 36 | 37 | 38 | {{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/docsydocs" %}} 39 | For announcement of latest features etc. 40 | {{% /blocks/feature %}} 41 | 42 | 43 | {{< /blocks/section >}} 44 | 45 | 46 | {{< blocks/section >}} 47 |
48 |

This is the second Section

49 |
50 | 51 | {{< /blocks/section >}} 52 | 53 | 54 | 55 | {{< blocks/section >}} 56 | {{% blocks/feature icon="fab fa-app-store-ios" title="Download **from AppStore**" %}} 57 | Get the Goldydocs app! 58 | {{% /blocks/feature %}} 59 | 60 | 61 | {{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/google/docsy-example" %}} 62 | We do a [Pull Request](https://github.com/google/docsy-example/pulls) contributions workflow on **GitHub**. New users are always welcome! 63 | {{% /blocks/feature %}} 64 | 65 | 66 | {{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/GoHugoIO" %}} 67 | For announcement of latest features etc. 68 | {{% /blocks/feature %}} 69 | 70 | 71 | {{< /blocks/section >}} 72 | 73 | 80 | -------------------------------------------------------------------------------- /layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- 1 | {{ if .Path }} 2 | {{ $pathFormatted := replace .Path "\\" "/" -}} 3 | {{ $gh_repo := ($.Param "github_repo") -}} 4 | {{ $gh_url := ($.Param "github_url") -}} 5 | {{ $gh_subdir := ($.Param "github_subdir") -}} 6 | {{ $gh_project_repo := ($.Param "github_project_repo") -}} 7 | {{ $gh_branch := (default "master" ($.Param "github_branch")) -}} 8 |
9 | {{ if $gh_url -}} 10 | {{ warnf "Warning: use of `github_url` is deprecated. For details see https://www.docsy.dev/docs/adding-content/repository-links/#github_url-optional" -}} 11 | {{ T "post_edit_this" }} 12 | {{ else if $gh_repo -}} 13 | {{ $gh_repo_path := printf "%s/content/%s" $gh_branch $pathFormatted -}} 14 | 21 | {{ if $gh_subdir -}} 22 | {{ $gh_repo_path = printf "%s/%s/content/%s" $gh_branch $gh_subdir $pathFormatted -}} 23 | {{ end -}} 24 | 25 | {{/* Adjust $gh_repo_path based on path_base_for_github_subdir */ -}} 26 | {{ $ghs_base := $.Param "path_base_for_github_subdir" -}} 27 | {{ $ghs_rename := "" -}} 28 | {{ if reflect.IsMap $ghs_base -}} 29 | {{ $ghs_rename = $ghs_base.to -}} 30 | {{ $ghs_base = $ghs_base.from -}} 31 | {{ end -}} 32 | {{ with $ghs_base -}} 33 | {{ $gh_repo_path = replaceRE . $ghs_rename $gh_repo_path -}} 34 | {{ end -}} 35 | 36 | {{ $viewURL := printf "%s/tree/%s" $gh_repo $gh_repo_path -}} 37 | {{ $editURL := printf "%s/edit/%s" $gh_repo $gh_repo_path -}} 38 | {{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (safeURL $.Title ) -}} 39 | {{ $newPageStub := resources.Get "stubs/new-page-template.md" -}} 40 | {{ $newPageQS := querify "value" $newPageStub.Content "filename" "change-me.md" | safeURL -}} 41 | {{ $newPageURL := printf "%s/new/%s?%s" $gh_repo $gh_repo_path $newPageQS -}} 42 | 43 | 44 | {{ T "post_edit_this" }} 45 | {{ T "post_create_child_page" }} 46 | {{ T "post_create_issue" }} 47 | {{ with $gh_project_repo -}} 48 | {{ $project_issueURL := printf "%s/issues/new" . -}} 49 | {{ T "post_create_project_issue" }} 50 | {{ end -}} 51 | 52 | {{ end -}} 53 | {{ with .CurrentSection.AlternativeOutputFormats.Get "print" -}} 54 | {{ T "print_entire_section" }} 55 | {{ end }} 56 |
57 | {{ end -}} 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docsy Example 2 | 3 | [Docsy][] is a [Hugo theme][] for technical documentation sites, providing easy 4 | site navigation, structure, and more. This **Docsy Example Project** uses the 5 | Docsy theme and provides a skeleton documentation structure for you to use. You 6 | can clone/copy this project and edit it with your own content, or use it as an 7 | example. 8 | 9 | In this project, the Docsy theme is included as a Git submodule: 10 | 11 | ```bash 12 | $ git submodule 13 | ...... themes/docsy (remotes/origin/HEAD) 14 | ``` 15 | 16 | You can find detailed theme instructions in the [Docsy user guide][]. 17 | 18 | This Docsy Example Project is hosted on [Netlify][] at [example.docsy.dev][]. 19 | You can view deploy logs from the [deploy section of the project's Netlify 20 | dashboard][deploys], or this [alternate dashboard][]. 21 | 22 | This is not an officially supported Google product. This project is currently maintained. 23 | 24 | ## Using the Docsy Example Project as a template 25 | 26 | A simple way to get started is to use this project as a template, which gives you a site project that is set up and ready to use. To do this: 27 | 28 | 1. Click **Use this template**. 29 | 30 | 2. Select a name for your new project and click **Create repository from template**. 31 | 32 | 3. Make your own local working copy of your new repo using git clone, replacing https://github.com/my/example.git with your repo’s web URL: 33 | 34 | ```bash 35 | git clone --recurse-submodules --depth 1 https://github.com/my/example.git 36 | ``` 37 | 38 | You can now edit your own versions of the site’s source files. 39 | 40 | If you want to do SCSS edits and want to publish these, you need to install `PostCSS` 41 | 42 | ```bash 43 | npm install 44 | ``` 45 | 46 | ## Running the website locally 47 | 48 | Building and running the site locally requires a recent `extended` version of [Hugo](https://gohugo.io). 49 | You can find out more about how to install Hugo for your environment in our 50 | [Getting started](https://www.docsy.dev/docs/getting-started/#prerequisites-and-installation) guide. 51 | 52 | Once you've made your working copy of the site repo, from the repo root folder, run: 53 | 54 | ``` 55 | hugo server 56 | ``` 57 | 58 | ## Running a container locally 59 | 60 | You can run docsy-example inside a [Docker](https://docs.docker.com/) 61 | container, the container runs with a volume bound to the `docsy-example` 62 | folder. This approach doesn't require you to install any dependencies other 63 | than [Docker Desktop](https://www.docker.com/products/docker-desktop) on 64 | Windows and Mac, and [Docker Compose](https://docs.docker.com/compose/install/) 65 | on Linux. 66 | 67 | 1. Build the docker image 68 | 69 | ```bash 70 | docker-compose build 71 | ``` 72 | 73 | 1. Run the built image 74 | 75 | ```bash 76 | docker-compose up 77 | ``` 78 | 79 | > NOTE: You can run both commands at once with `docker-compose up --build`. 80 | 81 | 1. Verify that the service is working. 82 | 83 | Open your web browser and type `http://localhost:1313` in your navigation bar, 84 | This opens a local instance of the docsy-example homepage. You can now make 85 | changes to the docsy example and those changes will immediately show up in your 86 | browser after you save. 87 | 88 | ### Cleanup 89 | 90 | To stop Docker Compose, on your terminal window, press **Ctrl + C**. 91 | 92 | To remove the produced images run: 93 | 94 | ```console 95 | docker-compose rm 96 | ``` 97 | For more information see the [Docker Compose 98 | documentation](https://docs.docker.com/compose/gettingstarted/). 99 | 100 | ## Troubleshooting 101 | 102 | As you run the website locally, you may run into the following error: 103 | 104 | ``` 105 | ➜ hugo server 106 | 107 | INFO 2021/01/21 21:07:55 Using config file: 108 | Building sites … INFO 2021/01/21 21:07:55 syncing static files to / 109 | Built in 288 ms 110 | Error: Error building site: TOCSS: failed to transform "scss/main.scss" (text/x-scss): resource "scss/scss/main.scss_9fadf33d895a46083cdd64396b57ef68" not found in file cache 111 | ``` 112 | 113 | This error occurs if you have not installed the extended version of Hugo. 114 | See our [user guide](https://www.docsy.dev/docs/getting-started/) for instructions on how to install Hugo. 115 | 116 | [alternate dashboard]: https://app.netlify.com/sites/goldydocs/deploys 117 | [deploys]: https://app.netlify.com/sites/docsy-example/deploys 118 | [Docsy user guide]: https://docsy.dev/docs 119 | [Docsy]: https://github.com/google/docsy 120 | [example.docsy.dev]: https://example.docsy.dev 121 | [Hugo theme]: https://gohugo.io/themes/installing-and-using-themes/ 122 | [Netlify]: https://netlify.com 123 | -------------------------------------------------------------------------------- /content/docs/Contribution/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "贡献指南" 3 | linkTitle: "贡献指南" 4 | weight: 10 5 | description: > 6 | 如何参与贡献此站点 7 | --- 8 | 9 | {{% pageinfo %}} 10 | These basic sample guidelines assume that your Docsy site is deployed using Netlify and your files are stored in GitHub. You can use the guidelines "as is" or adapt them with your own instructions: for example, other deployment options, information about your doc project's file structure, project-specific review guidelines, versioning guidelines, or any other information your users might find useful when updating your site. [Kubeflow](https://github.com/kubeflow/website/blob/master/README.md) has a great example. 11 | 12 | Don't forget to link to your own doc repo rather than our example site! Also make sure users can find these guidelines from your doc repo README: either add them there and link to them from this page, add them here and link to them from the README, or include them in both locations. 13 | {{% /pageinfo %}} 14 | 15 | We use [Hugo](https://gohugo.io/) to format and generate our website, the 16 | [Docsy](https://github.com/google/docsy) theme for styling and site structure, 17 | and [Netlify](https://www.netlify.com/) to manage the deployment of the site. 18 | Hugo is an open-source static site generator that provides us with templates, 19 | content organisation in a standard directory structure, and a website generation 20 | engine. You write the pages in Markdown (or HTML if you want), and Hugo wraps them up into a website. 21 | 22 | All submissions, including submissions by project members, require review. We 23 | use GitHub pull requests for this purpose. Consult 24 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 25 | information on using pull requests. 26 | 27 | ## Quick start with Netlify 28 | 29 | Here's a quick guide to updating the docs. It assumes you're familiar with the 30 | GitHub workflow and you're happy to use the automated preview of your doc 31 | updates: 32 | 33 | 1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) on GitHub. 34 | 1. Make your changes and send a pull request (PR). 35 | 1. If you're not yet ready for a review, add "WIP" to the PR name to indicate 36 | it's a work in progress. (**Don't** add the Hugo property 37 | "draft = true" to the page front matter, because that prevents the 38 | auto-deployment of the content preview described in the next point.) 39 | 1. Wait for the automated PR workflow to do some checks. When it's ready, 40 | you should see a comment like this: **deploy/netlify — Deploy preview ready!** 41 | 1. Click **Details** to the right of "Deploy preview ready" to see a preview 42 | of your updates. 43 | 1. Continue updating your doc and pushing your changes until you're happy with 44 | the content. 45 | 1. When you're ready for a review, add a comment to the PR, and remove any 46 | "WIP" markers. 47 | 48 | ## Updating a single page 49 | 50 | If you've just spotted something you'd like to change while using the docs, Docsy has a shortcut for you: 51 | 52 | 1. Click **Edit this page** in the top right hand corner of the page. 53 | 1. If you don't already have an up to date fork of the project repo, you are prompted to get one - click **Fork this repository and propose changes** or **Update your Fork** to get an up to date version of the project to edit. The appropriate page in your fork is displayed in edit mode. 54 | 1. Follow the rest of the [Quick start with Netlify](#quick-start-with-netlify) process above to make, preview, and propose your changes. 55 | 56 | ## Previewing your changes locally 57 | 58 | If you want to run your own local Hugo server to preview your changes as you work: 59 | 60 | 1. Follow the instructions in [Getting started](/docs/getting-started) to install Hugo and any other tools you need. You'll need at least **Hugo version 0.45** (we recommend using the most recent available version), and it must be the **extended** version, which supports SCSS. 61 | 1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site. 62 | 63 | ``` 64 | git clone --recurse-submodules --depth 1 https://github.com/google/docsy-example.git 65 | ``` 66 | 67 | 1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site. 68 | 1. Continue with the usual GitHub workflow to edit files, commit them, push the 69 | changes up to your fork, and create a pull request. 70 | 71 | ## Creating an issue 72 | 73 | If you've found a problem in the docs, but you're not sure how to fix it yourself, please create an issue in the [Goldydocs repo](https://github.com/google/docsy-example/issues). You can also create an issue about a specific page by clicking the **Create Issue** button in the top right hand corner of the page. 74 | 75 | ## Useful resources 76 | 77 | * [Docsy user guide](https://www.docsy.dev/docs/): All about Docsy, including how it manages navigation, look and feel, and multi-language support. 78 | * [Hugo documentation](https://gohugo.io/documentation/): Comprehensive reference for Hugo. 79 | * [Github Hello World!](https://guides.github.com/activities/hello-world/): A basic introduction to GitHub concepts and workflow. 80 | 81 | 82 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | # 根目录的路径 2 | baseURL = "https://xiaoping378.github.io/docsy" 3 | 4 | # 站点title,会被多语言里的设置覆盖 5 | # title = "小平栈" 6 | 7 | # 是否生成robots文件 8 | enableRobotsTXT = true 9 | 10 | # 主题选择,支持组合,优先级从左到右. 11 | theme = ["docsy"] 12 | 13 | # 页面上提供类似"最后修改"的信息 14 | enableGitInfo = true 15 | 16 | # 国际化相关设置 17 | # 默认语言的的站点内容路径 18 | contentDir = "content" 19 | # 默认语言 20 | defaultContentLanguage = "zh-cn" 21 | 22 | # 国际化翻译中,如果有缺失是否用占位符显示 23 | enableMissingTranslationPlaceholders = true 24 | 25 | # 注释后,可以开启标签分类功能 26 | # disableKinds = ["taxonomy", "taxonomyTerm"] 27 | 28 | [params.taxonomy] 29 | # set taxonomyCloud = [] to hide taxonomy clouds 30 | taxonomyCloud = ["tags"] 31 | # If used, must have same lang as taxonomyCloud 32 | taxonomyCloudTitle = ["标签"] 33 | # set taxonomyPageHeader = [] to hide taxonomies on the page headers 34 | taxonomyPageHeader = ["tags"] 35 | 36 | 37 | # 代码块高亮配置 38 | pygmentsCodeFences = true 39 | pygmentsUseClasses = false 40 | # Use the new Chroma Go highlighter in Hugo. 41 | pygmentsUseClassic = false 42 | #pygmentsOptions = "linenos=table" 43 | # See https://help.farbox.com/pygments.html 44 | pygmentsStyle = "emacs" 45 | 46 | # 配置blog编译产物的路径. 47 | [permalinks] 48 | blog = "/:section/:year/:month/:day/:slug/" 49 | 50 | # markdown渲染引擎配置: https://github.com/russross/blackfriday 51 | # [blackfriday] 52 | # plainIDAnchors = true 53 | # hrefTargetBlank = true 54 | # angledQuotes = false 55 | # latexDashes = true 56 | 57 | # 图片引擎处理: https://github.com/disintegration/imaging 58 | [imaging] 59 | resampleFilter = "CatmullRom" 60 | quality = 75 61 | anchor = "smart" 62 | 63 | # [services] 64 | # [services.googleAnalytics] 65 | # # Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. 66 | # id = "UA-00000000-0" 67 | 68 | # Language configuration 69 | 70 | [languages] 71 | [languages.zh-cn] 72 | title = "小平专栏" 73 | description = "小平-所思所为" 74 | languageName ="中文" 75 | # 用于多语言排序,越小越靠上。 76 | weight = 1 77 | 78 | # markdown的解析设置,抄的k8s 文档设置... 79 | [markup] 80 | [markup.goldmark] 81 | [markup.goldmark.extensions] 82 | definitionList = true 83 | table = true 84 | typographer = false 85 | [markup.goldmark.parser] 86 | attribute = true 87 | autoHeadingID = true 88 | autoHeadingIDType = "blackfriday" 89 | [markup.goldmark.renderer] 90 | unsafe = true 91 | [markup.highlight] 92 | codeFences = true 93 | guessSyntax = false 94 | hl_Lines = "" 95 | lineNoStart = 1 96 | lineNos = false 97 | lineNumbersInTable = true 98 | noClasses = true 99 | style = "emacs" 100 | tabWidth = 4 101 | [markup.tableOfContents] 102 | endLevel = 3 103 | ordered = false 104 | startLevel = 2 105 | 106 | # Everything below this are Site Params 107 | 108 | # Comment out if you don't want the "print entire section" link enabled. 109 | [outputs] 110 | section = ["HTML", "print", "RSS"] 111 | 112 | [params] 113 | copyright = "xiaoping378" 114 | privacy_policy = "#" 115 | 116 | # First one is picked as the Twitter card image if not set on page. 117 | # images = ["images/project-illustration.png"] 118 | 119 | # Menu title if your navbar has a versions selector to access old versions of your site. 120 | # This menu appears only if you have at least one [params.versions] set. 121 | version_menu = "Releases" 122 | 123 | # Flag used in the "version-banner" partial to decide whether to display a 124 | # banner on every page indicating that this is an archived version of the docs. 125 | # Set this flag to "true" if you want to display the banner. 126 | archived_version = false 127 | 128 | # The version number for the version of the docs represented in this doc set. 129 | # Used in the "version-banner" partial to display a version number for the 130 | # current doc set. 131 | version = "0.0" 132 | 133 | # A link to latest version of the docs. Used in the "version-banner" partial to 134 | # point people to the main doc site. 135 | # url_latest_version = "https://example.com" 136 | 137 | # 方便用户反馈,提交技术文章问题的仓库地址 138 | github_repo = "https://github.com/xiaoping378/docsy" 139 | # 技术站点背后的项目issue地址 140 | # github_project_repo = "https://github.com/xiaoping378/docsy" 141 | 142 | # 以下三个是设置远程文档位置的,目前用不上,这里hack一下,不然“编辑此页”的功能会去链接到content/zh-cn下 143 | # Specify a value here if your content directory is not in your repo's root directory 144 | github_subdir = "/" 145 | 146 | # Uncomment this if you have a newer GitHub repo with "main" as the default branch, 147 | # or specify a new value if you want to reference another branch in your GitHub links 148 | # github_branch= "main" 149 | 150 | # 支持三种搜索,三选一,禁用google搜索,需要注释掉此处 151 | # gcs_engine_id = "d72aa9b2712488cc3" 152 | 153 | # Enable Algolia DocSearch 154 | algolia_docsearch = false 155 | 156 | # Enable Lunr.js offline search 157 | offlineSearch = false 158 | 159 | # 默认使用的Chroma代码高亮方案,可换成prism方案。 160 | prism_syntax_highlighting = false 161 | 162 | # User interface configuration 163 | [params.ui] 164 | # 是否禁用面包屑导航. 165 | breadcrumb_disable = false 166 | # 是否禁用底部About链接 167 | footer_about_disable = true 168 | # 是否展示项目logo,位置必须放置在 assets/icons/logo.svg 169 | navbar_logo = true 170 | # 在首页,上下滑动页面,顶部导航是否禁用半透明 171 | navbar_translucent_over_cover_disable = false 172 | # 左侧章节树形目录默认是否处于折叠状态 173 | sidebar_menu_compact = true 174 | # 左侧章节树形目录上是否不显示搜索框,前提是需要开启搜索功能 175 | sidebar_search_disable = false 176 | 177 | # 关闭了google分析,下面功能不会启用 178 | [params.ui.feedback] 179 | enable = true 180 | # The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). 181 | yes = 'Glad to hear it! Please tell us how we can improve.' 182 | no = 'Sorry to hear that. Please tell us how we can improve.' 183 | 184 | # 在文章上面显示“阅读时长:x分钟” 185 | [params.ui.readingtime] 186 | enable = false 187 | 188 | 189 | # 社区community版面要用到的参数 190 | [params.links] 191 | # End user relevant links. These will show up on left side of footer and in the community page if you have one. 192 | [[params.links.user]] 193 | name = "个人邮箱 xiaoping378@163.com" 194 | url = "mailto:xiaoping378@163.com" 195 | icon = "fa fa-envelope" 196 | desc = "欢迎邮件交流" 197 | [[params.links.user]] 198 | name ="微博" 199 | url = "https://weibo.com/xiaoping378" 200 | icon = "fab fa-weibo" 201 | desc = "个人微博,基本不用" 202 | [[params.links.user]] 203 | name = "知乎" 204 | url = "https://www.zhihu.com/people/xiaoping378" 205 | icon = "fab fa-zhihu" 206 | desc = "知乎专栏" 207 | # Developer relevant links. These will show up on right side of footer and in the community page if you have one. 208 | [[params.links.developer]] 209 | name = "GitHub" 210 | url = "https://github.com/xiaoping378/blog" 211 | icon = "fab fa-github" 212 | desc = "文集开源地址!" 213 | [[params.links.developer]] 214 | name = "Slack" 215 | url = "https://example.org/slack" 216 | icon = "fab fa-slack" 217 | desc = "未开通" 218 | [[params.links.developer]] 219 | name = "Developer mailing list" 220 | url = "https://example.org/mail" 221 | icon = "fa fa-envelope" 222 | desc = "未开通" 223 | -------------------------------------------------------------------------------- /content/docs/Reference/parameter-reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "优秀文集" 3 | linkTitle: "优秀文集" 4 | date: 2017-01-05 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 14 | 15 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 16 | 17 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 18 | 19 | > There should be no margin above this first sentence. 20 | > 21 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 22 | > 23 | > There should be no margin below this final sentence. 24 | 25 | ## First Header 2 26 | 27 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 28 | 29 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 30 | 31 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 32 | 33 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 34 | 35 | 36 | ## Second Header 2 37 | 38 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 39 | 40 | ### Header 3 41 | 42 | ``` 43 | This is a code block following a header. 44 | ``` 45 | 46 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 47 | 48 | #### Header 4 49 | 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | 54 | ##### Header 5 55 | 56 | 1. This is an ordered list following a header. 57 | 2. This is an ordered list following a header. 58 | 3. This is an ordered list following a header. 59 | 60 | ###### Header 6 61 | 62 | | What | Follows | 63 | |-----------|-----------------| 64 | | A table | A header | 65 | | A table | A header | 66 | | A table | A header | 67 | 68 | ---------------- 69 | 70 | There's a horizontal rule above and below this. 71 | 72 | ---------------- 73 | 74 | Here is an unordered list: 75 | 76 | * Liverpool F.C. 77 | * Chelsea F.C. 78 | * Manchester United F.C. 79 | 80 | And an ordered list: 81 | 82 | 1. Michael Brecker 83 | 2. Seamus Blake 84 | 3. Branford Marsalis 85 | 86 | And an unordered task list: 87 | 88 | - [x] Create a Hugo theme 89 | - [x] Add task lists to it 90 | - [ ] Take a vacation 91 | 92 | And a "mixed" task list: 93 | 94 | - [ ] Pack bags 95 | - ? 96 | - [ ] Travel! 97 | 98 | And a nested list: 99 | 100 | * Jackson 5 101 | * Michael 102 | * Tito 103 | * Jackie 104 | * Marlon 105 | * Jermaine 106 | * TMNT 107 | * Leonardo 108 | * Michelangelo 109 | * Donatello 110 | * Raphael 111 | 112 | Definition lists can be used with Markdown syntax. Definition headers are bold. 113 | 114 | Name 115 | : Godzilla 116 | 117 | Born 118 | : 1952 119 | 120 | Birthplace 121 | : Japan 122 | 123 | Color 124 | : Green 125 | 126 | 127 | ---------------- 128 | 129 | Tables should have bold headings and alternating shaded rows. 130 | 131 | | Artist | Album | Year | 132 | |-------------------|-----------------|------| 133 | | Michael Jackson | Thriller | 1982 | 134 | | Prince | Purple Rain | 1984 | 135 | | Beastie Boys | License to Ill | 1986 | 136 | 137 | If a table is too wide, it should scroll horizontally. 138 | 139 | | Artist | Album | Year | Label | Awards | Songs | 140 | |-------------------|-----------------|------|-------------|----------|-----------| 141 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 142 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 143 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 144 | 145 | ---------------- 146 | 147 | Code snippets like `var foo = "bar";` can be shown inline. 148 | 149 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 150 | 151 | Code can also be shown in a block element. 152 | 153 | ``` 154 | foo := "bar"; 155 | bar := "foo"; 156 | ``` 157 | 158 | Code can also use syntax highlighting. 159 | 160 | ```go 161 | func main() { 162 | input := `var foo = "bar";` 163 | 164 | lexer := lexers.Get("javascript") 165 | iterator, _ := lexer.Tokenise(nil, input) 166 | style := styles.Get("github") 167 | formatter := html.New(html.WithLineNumbers()) 168 | 169 | var buff bytes.Buffer 170 | formatter.Format(&buff, style, iterator) 171 | 172 | fmt.Println(buff.String()) 173 | } 174 | ``` 175 | 176 | ``` 177 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 178 | ``` 179 | 180 | Inline code inside table cells should still be distinguishable. 181 | 182 | | Language | Code | 183 | |-------------|--------------------| 184 | | Javascript | `var foo = "bar";` | 185 | | Ruby | `foo = "bar"{` | 186 | 187 | ---------------- 188 | 189 | Small images should be shown at their actual size. 190 | 191 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 192 | 193 | Large images should always scale down and fit in the content container. 194 | 195 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 196 | 197 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 198 | 199 | 200 | ## Components 201 | 202 | ### Alerts 203 | 204 | {{< alert >}}This is an alert.{{< /alert >}} 205 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 206 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 207 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 208 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 209 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 210 | 211 | 212 | ## Another Heading 213 | -------------------------------------------------------------------------------- /content/blog/news/second-post.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "The second blog post" 4 | linkTitle: "Second blog post" 5 | date: 2018-10-06 6 | description: > 7 | A short lead description about this content page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 13 | 14 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 15 | 16 | > There should be no margin above this first sentence. 17 | > 18 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 19 | > 20 | > There should be no margin below this final sentence. 21 | 22 | ## First Header 23 | 24 | This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 25 | 26 | 27 | 28 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 29 | 30 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 31 | 32 | Lorem markdownum tuta hospes stabat; idem saxum facit quaterque repetito 33 | occumbere, oves novem gestit haerebat frena; qui. Respicit recurvam erat: 34 | pignora hinc reppulit nos **aut**, aptos, ipsa. 35 | 36 | Meae optatos *passa est* Epiros utiliter *Talibus niveis*, hoc lata, edidit. 37 | Dixi ad aestum. 38 | 39 | ## Header 2 40 | 41 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 42 | 43 | ### Header 3 44 | 45 | ``` 46 | This is a code block following a header. 47 | ``` 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Salt-n-Pepa 78 | * Bel Biv DeVoe 79 | * Kid 'N Play 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Jackson 84 | 2. Michael Bolton 85 | 3. Michael Bublé 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a sample markdown document 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Steal underpants 96 | - ? 97 | - [ ] Profit! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition terms are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://placekitten.com/g/300/200/) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://placekitten.com/g/1200/800/) 197 | 198 | ## Components 199 | 200 | ### Alerts 201 | 202 | {{< alert >}}This is an alert.{{< /alert >}} 203 | {{< alert title="Note:" >}}This is an alert with a title.{{< /alert >}} 204 | {{< alert type="success" >}}This is a successful alert.{{< /alert >}} 205 | {{< alert type="warning" >}}This is a warning!{{< /alert >}} 206 | {{< alert type="warning" title="Warning!" >}}This is a warning with a title!{{< /alert >}} 207 | 208 | 209 | ## Sizing 210 | 211 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 212 | 213 | ### Parameters available 214 | 215 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### Using pixels 218 | 219 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 220 | 221 | ### Using rem 222 | 223 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 224 | 225 | ## Memory 226 | 227 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 228 | 229 | ### RAM to use 230 | 231 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 232 | 233 | ### More is better 234 | 235 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 236 | 237 | ### Used RAM 238 | 239 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 240 | 241 | 242 | 243 | ``` 244 | This is the final element on the page and there should be no margin below this. 245 | ``` 246 | -------------------------------------------------------------------------------- /content/blog/releases/in-depth-monoliths-detailed-spec.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: "Another Great Release" 4 | linkTitle: "Release New Features" 5 | date: 2018-01-04 6 | description: > 7 | A short lead description about this content page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs. 8 | --- 9 | 10 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over). 11 | 12 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 13 | 14 | There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. 15 | 16 | > There should be no margin above this first sentence. 17 | > 18 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 19 | > 20 | > There should be no margin below this final sentence. 21 | 22 | ## First Header 23 | 24 | This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 25 | 26 | 27 | 28 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 29 | 30 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 31 | 32 | Lorem markdownum tuta hospes stabat; idem saxum facit quaterque repetito 33 | occumbere, oves novem gestit haerebat frena; qui. Respicit recurvam erat: 34 | pignora hinc reppulit nos **aut**, aptos, ipsa. 35 | 36 | Meae optatos *passa est* Epiros utiliter *Talibus niveis*, hoc lata, edidit. 37 | Dixi ad aestum. 38 | 39 | ## Header 2 40 | 41 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 42 | 43 | ### Header 3 44 | 45 | ``` 46 | This is a code block following a header. 47 | ``` 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Salt-n-Pepa 78 | * Bel Biv DeVoe 79 | * Kid 'N Play 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Jackson 84 | 2. Michael Bolton 85 | 3. Michael Bublé 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a sample markdown document 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Steal underpants 96 | - ? 97 | - [ ] Profit! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition terms are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://placekitten.com/g/300/200/) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://placekitten.com/g/1200/800/) 197 | 198 | ## Components 199 | 200 | ### Alerts 201 | 202 | {{< alert >}}This is an alert.{{< /alert >}} 203 | {{< alert title="Note:" >}}This is an alert with a title.{{< /alert >}} 204 | {{< alert type="success" >}}This is a successful alert.{{< /alert >}} 205 | {{< alert type="warning" >}}This is a warning!{{< /alert >}} 206 | {{< alert type="warning" title="Warning!" >}}This is a warning with a title!{{< /alert >}} 207 | 208 | 209 | ## Sizing 210 | 211 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 212 | 213 | ### Parameters available 214 | 215 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### Using pixels 218 | 219 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 220 | 221 | ### Using rem 222 | 223 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 224 | 225 | ## Memory 226 | 227 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 228 | 229 | ### RAM to use 230 | 231 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 232 | 233 | ### More is better 234 | 235 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 236 | 237 | ### Used RAM 238 | 239 | Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 240 | 241 | 242 | 243 | ``` 244 | This is the final element on the page and there should be no margin below this. 245 | ``` 246 | -------------------------------------------------------------------------------- /content/docs/3-DevOps/tutorial2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Another Tutorial" 3 | date: 2017-01-05 4 | weight: 5 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 14 | 15 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 16 | 17 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 18 | 19 | > There should be no margin above this first sentence. 20 | > 21 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 22 | > 23 | > There should be no margin below this final sentence. 24 | 25 | ## First Header 2 26 | 27 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 28 | 29 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 30 | 31 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 32 | 33 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 34 | 35 | 36 | ## Second Header 2 37 | 38 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 39 | 40 | ### Header 3 41 | 42 | ``` 43 | This is a code block following a header. 44 | ``` 45 | 46 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 47 | 48 | #### Header 4 49 | 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | 54 | ##### Header 5 55 | 56 | 1. This is an ordered list following a header. 57 | 2. This is an ordered list following a header. 58 | 3. This is an ordered list following a header. 59 | 60 | ###### Header 6 61 | 62 | | What | Follows | 63 | |-----------|-----------------| 64 | | A table | A header | 65 | | A table | A header | 66 | | A table | A header | 67 | 68 | ---------------- 69 | 70 | There's a horizontal rule above and below this. 71 | 72 | ---------------- 73 | 74 | Here is an unordered list: 75 | 76 | * Liverpool F.C. 77 | * Chelsea F.C. 78 | * Manchester United F.C. 79 | 80 | And an ordered list: 81 | 82 | 1. Michael Brecker 83 | 2. Seamus Blake 84 | 3. Branford Marsalis 85 | 86 | And an unordered task list: 87 | 88 | - [x] Create a Hugo theme 89 | - [x] Add task lists to it 90 | - [ ] Take a vacation 91 | 92 | And a "mixed" task list: 93 | 94 | - [ ] Pack bags 95 | - ? 96 | - [ ] Travel! 97 | 98 | And a nested list: 99 | 100 | * Jackson 5 101 | * Michael 102 | * Tito 103 | * Jackie 104 | * Marlon 105 | * Jermaine 106 | * TMNT 107 | * Leonardo 108 | * Michelangelo 109 | * Donatello 110 | * Raphael 111 | 112 | Definition lists can be used with Markdown syntax. Definition headers are bold. 113 | 114 | Name 115 | : Godzilla 116 | 117 | Born 118 | : 1952 119 | 120 | Birthplace 121 | : Japan 122 | 123 | Color 124 | : Green 125 | 126 | 127 | ---------------- 128 | 129 | Tables should have bold headings and alternating shaded rows. 130 | 131 | | Artist | Album | Year | 132 | |-------------------|-----------------|------| 133 | | Michael Jackson | Thriller | 1982 | 134 | | Prince | Purple Rain | 1984 | 135 | | Beastie Boys | License to Ill | 1986 | 136 | 137 | If a table is too wide, it should scroll horizontally. 138 | 139 | | Artist | Album | Year | Label | Awards | Songs | 140 | |-------------------|-----------------|------|-------------|----------|-----------| 141 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 142 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 143 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 144 | 145 | ---------------- 146 | 147 | Code snippets like `var foo = "bar";` can be shown inline. 148 | 149 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 150 | 151 | Code can also be shown in a block element. 152 | 153 | ``` 154 | foo := "bar"; 155 | bar := "foo"; 156 | ``` 157 | 158 | Code can also use syntax highlighting. 159 | 160 | ```go 161 | func main() { 162 | input := `var foo = "bar";` 163 | 164 | lexer := lexers.Get("javascript") 165 | iterator, _ := lexer.Tokenise(nil, input) 166 | style := styles.Get("github") 167 | formatter := html.New(html.WithLineNumbers()) 168 | 169 | var buff bytes.Buffer 170 | formatter.Format(&buff, style, iterator) 171 | 172 | fmt.Println(buff.String()) 173 | } 174 | ``` 175 | 176 | ``` 177 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 178 | ``` 179 | 180 | Inline code inside table cells should still be distinguishable. 181 | 182 | | Language | Code | 183 | |-------------|--------------------| 184 | | Javascript | `var foo = "bar";` | 185 | | Ruby | `foo = "bar"{` | 186 | 187 | ---------------- 188 | 189 | Small images should be shown at their actual size. 190 | 191 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 192 | 193 | Large images should always scale down and fit in the content container. 194 | 195 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 196 | 197 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 198 | 199 | 200 | ## Components 201 | 202 | ### Alerts 203 | 204 | {{< alert >}}This is an alert.{{< /alert >}} 205 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 206 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 207 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 208 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 209 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 210 | 211 | 212 | ## Another Heading 213 | 214 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 215 | 216 | ### This Document 217 | 218 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 219 | 220 | 221 | ### Pixel Count 222 | 223 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 224 | 225 | ### Contact Info 226 | 227 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 228 | 229 | 230 | ### External Links 231 | 232 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 233 | 234 | 235 | 236 | ``` 237 | This is the final element on the page and there should be no margin below this. 238 | ``` 239 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/task.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Another Task" 3 | date: 2017-01-05 4 | weight: 5 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | 14 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 15 | 16 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 17 | 18 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 19 | 20 | > There should be no margin above this first sentence. 21 | > 22 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 23 | > 24 | > There should be no margin below this final sentence. 25 | 26 | ## First Header 2 27 | 28 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 29 | 30 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 31 | 32 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 33 | 34 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 35 | 36 | 37 | ## Second Header 2 38 | 39 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 40 | 41 | ### Header 3 42 | 43 | ``` 44 | This is a code block following a header. 45 | ``` 46 | 47 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Liverpool F.C. 78 | * Chelsea F.C. 79 | * Manchester United F.C. 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Brecker 84 | 2. Seamus Blake 85 | 3. Branford Marsalis 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a Hugo theme 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Pack bags 96 | - ? 97 | - [ ] Travel! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition headers are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 197 | 198 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 199 | 200 | 201 | ## Components 202 | 203 | ### Alerts 204 | 205 | {{< alert >}}This is an alert.{{< /alert >}} 206 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 207 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 208 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 209 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 210 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 211 | 212 | 213 | ## Another Heading 214 | 215 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### This Document 218 | 219 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 220 | 221 | 222 | ### Pixel Count 223 | 224 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 225 | 226 | ### Contact Info 227 | 228 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 229 | 230 | 231 | ### External Links 232 | 233 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 234 | 235 | 236 | 237 | ``` 238 | This is the final element on the page and there should be no margin below this. 239 | ``` 240 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/beds.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Bed and Chair Metrics" 3 | date: 2017-01-05 4 | weight: 2 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | 14 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 15 | 16 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 17 | 18 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 19 | 20 | > There should be no margin above this first sentence. 21 | > 22 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 23 | > 24 | > There should be no margin below this final sentence. 25 | 26 | ## First Header 2 27 | 28 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 29 | 30 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 31 | 32 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 33 | 34 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 35 | 36 | 37 | ## Second Header 2 38 | 39 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 40 | 41 | ### Header 3 42 | 43 | ``` 44 | This is a code block following a header. 45 | ``` 46 | 47 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Liverpool F.C. 78 | * Chelsea F.C. 79 | * Manchester United F.C. 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Brecker 84 | 2. Seamus Blake 85 | 3. Branford Marsalis 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a Hugo theme 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Pack bags 96 | - ? 97 | - [ ] Travel! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition headers are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 197 | 198 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 199 | 200 | 201 | ## Components 202 | 203 | ### Alerts 204 | 205 | {{< alert >}}This is an alert.{{< /alert >}} 206 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 207 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 208 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 209 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 210 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 211 | 212 | 213 | ## Another Heading 214 | 215 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### This Document 218 | 219 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 220 | 221 | 222 | ### Pixel Count 223 | 224 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 225 | 226 | ### Contact Info 227 | 228 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 229 | 230 | 231 | ### External Links 232 | 233 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 234 | 235 | 236 | 237 | ``` 238 | This is the final element on the page and there should be no margin below this. 239 | ``` 240 | -------------------------------------------------------------------------------- /content/docs/3-DevOps/multi-bear.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Multi-Bear Domicile Setup" 3 | date: 2017-01-05 4 | weight: 4 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 14 | 15 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 16 | 17 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 18 | 19 | > There should be no margin above this first sentence. 20 | > 21 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 22 | > 23 | > There should be no margin below this final sentence. 24 | 25 | ## First Header 2 26 | 27 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 28 | 29 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 30 | 31 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 32 | 33 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 34 | 35 | 36 | ## Second Header 2 37 | 38 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 39 | 40 | ### Header 3 41 | 42 | ``` 43 | This is a code block following a header. 44 | ``` 45 | 46 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 47 | 48 | #### Header 4 49 | 50 | * This is an unordered list following a header. 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | 54 | ##### Header 5 55 | 56 | 1. This is an ordered list following a header. 57 | 2. This is an ordered list following a header. 58 | 3. This is an ordered list following a header. 59 | 60 | ###### Header 6 61 | 62 | | What | Follows | 63 | |-----------|-----------------| 64 | | A table | A header | 65 | | A table | A header | 66 | | A table | A header | 67 | 68 | ---------------- 69 | 70 | There's a horizontal rule above and below this. 71 | 72 | ---------------- 73 | 74 | Here is an unordered list: 75 | 76 | * Liverpool F.C. 77 | * Chelsea F.C. 78 | * Manchester United F.C. 79 | 80 | And an ordered list: 81 | 82 | 1. Michael Brecker 83 | 2. Seamus Blake 84 | 3. Branford Marsalis 85 | 86 | And an unordered task list: 87 | 88 | - [x] Create a Hugo theme 89 | - [x] Add task lists to it 90 | - [ ] Take a vacation 91 | 92 | And a "mixed" task list: 93 | 94 | - [ ] Pack bags 95 | - ? 96 | - [ ] Travel! 97 | 98 | And a nested list: 99 | 100 | * Jackson 5 101 | * Michael 102 | * Tito 103 | * Jackie 104 | * Marlon 105 | * Jermaine 106 | * TMNT 107 | * Leonardo 108 | * Michelangelo 109 | * Donatello 110 | * Raphael 111 | 112 | Definition lists can be used with Markdown syntax. Definition headers are bold. 113 | 114 | Name 115 | : Godzilla 116 | 117 | Born 118 | : 1952 119 | 120 | Birthplace 121 | : Japan 122 | 123 | Color 124 | : Green 125 | 126 | 127 | ---------------- 128 | 129 | Tables should have bold headings and alternating shaded rows. 130 | 131 | | Artist | Album | Year | 132 | |-------------------|-----------------|------| 133 | | Michael Jackson | Thriller | 1982 | 134 | | Prince | Purple Rain | 1984 | 135 | | Beastie Boys | License to Ill | 1986 | 136 | 137 | If a table is too wide, it should scroll horizontally. 138 | 139 | | Artist | Album | Year | Label | Awards | Songs | 140 | |-------------------|-----------------|------|-------------|----------|-----------| 141 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 142 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 143 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 144 | 145 | ---------------- 146 | 147 | Code snippets like `var foo = "bar";` can be shown inline. 148 | 149 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 150 | 151 | Code can also be shown in a block element. 152 | 153 | ``` 154 | foo := "bar"; 155 | bar := "foo"; 156 | ``` 157 | 158 | Code can also use syntax highlighting. 159 | 160 | ```go 161 | func main() { 162 | input := `var foo = "bar";` 163 | 164 | lexer := lexers.Get("javascript") 165 | iterator, _ := lexer.Tokenise(nil, input) 166 | style := styles.Get("github") 167 | formatter := html.New(html.WithLineNumbers()) 168 | 169 | var buff bytes.Buffer 170 | formatter.Format(&buff, style, iterator) 171 | 172 | fmt.Println(buff.String()) 173 | } 174 | ``` 175 | 176 | ``` 177 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 178 | ``` 179 | 180 | Inline code inside table cells should still be distinguishable. 181 | 182 | | Language | Code | 183 | |-------------|--------------------| 184 | | Javascript | `var foo = "bar";` | 185 | | Ruby | `foo = "bar"{` | 186 | 187 | ---------------- 188 | 189 | Small images should be shown at their actual size. 190 | 191 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 192 | 193 | Large images should always scale down and fit in the content container. 194 | 195 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 196 | 197 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 198 | 199 | 200 | ## Components 201 | 202 | ### Alerts 203 | 204 | {{< alert >}}This is an alert.{{< /alert >}} 205 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 206 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 207 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 208 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 209 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 210 | 211 | 212 | ## Another Heading 213 | 214 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 215 | 216 | ### This Document 217 | 218 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 219 | 220 | 221 | ### Pixel Count 222 | 223 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 224 | 225 | ### Contact Info 226 | 227 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 228 | 229 | 230 | ### External Links 231 | 232 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 233 | 234 | 235 | 236 | ``` 237 | This is the final element on the page and there should be no margin below this. 238 | ``` 239 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/porridge.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Porridge Assessment" 3 | date: 2017-01-05 4 | weight: 4 5 | description: > 6 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 7 | --- 8 | 9 | {{% pageinfo %}} 10 | This is a placeholder page. Replace it with your own content. 11 | {{% /pageinfo %}} 12 | 13 | 14 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 15 | 16 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 17 | 18 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 19 | 20 | > There should be no margin above this first sentence. 21 | > 22 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 23 | > 24 | > There should be no margin below this final sentence. 25 | 26 | ## First Header 2 27 | 28 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 29 | 30 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 31 | 32 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 33 | 34 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 35 | 36 | 37 | ## Second Header 2 38 | 39 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 40 | 41 | ### Header 3 42 | 43 | ``` 44 | This is a code block following a header. 45 | ``` 46 | 47 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Liverpool F.C. 78 | * Chelsea F.C. 79 | * Manchester United F.C. 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Brecker 84 | 2. Seamus Blake 85 | 3. Branford Marsalis 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a Hugo theme 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Pack bags 96 | - ? 97 | - [ ] Travel! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition headers are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 197 | 198 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 199 | 200 | 201 | ## Components 202 | 203 | ### Alerts 204 | 205 | {{< alert >}}This is an alert.{{< /alert >}} 206 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 207 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 208 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 209 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 210 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 211 | 212 | 213 | ## Another Heading 214 | 215 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### This Document 218 | 219 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 220 | 221 | 222 | ### Pixel Count 223 | 224 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 225 | 226 | ### Contact Info 227 | 228 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 229 | 230 | 231 | ### External Links 232 | 233 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 234 | 235 | 236 | 237 | ``` 238 | This is the final element on the page and there should be no margin below this. 239 | ``` 240 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/Ponycopters/launching-ponycopters.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Launching Ponycopters" 3 | linkTitle: "Launching Ponycopters" 4 | date: 2017-01-05 5 | weight: 3 6 | description: > 7 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page. Replace it with your own content. 12 | {{% /pageinfo %}} 13 | 14 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 15 | 16 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 17 | 18 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 19 | 20 | > There should be no margin above this first sentence. 21 | > 22 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 23 | > 24 | > There should be no margin below this final sentence. 25 | 26 | ## First Header 2 27 | 28 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 29 | 30 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 31 | 32 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 33 | 34 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 35 | 36 | 37 | ## Second Header 2 38 | 39 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 40 | 41 | ### Header 3 42 | 43 | ``` 44 | This is a code block following a header. 45 | ``` 46 | 47 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Liverpool F.C. 78 | * Chelsea F.C. 79 | * Manchester United F.C. 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Brecker 84 | 2. Seamus Blake 85 | 3. Branford Marsalis 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a Hugo theme 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Pack bags 96 | - ? 97 | - [ ] Travel! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition headers are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 197 | 198 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 199 | 200 | 201 | ## Components 202 | 203 | ### Alerts 204 | 205 | {{< alert >}}This is an alert.{{< /alert >}} 206 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 207 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 208 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 209 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 210 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 211 | 212 | 213 | ## Another Heading 214 | 215 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### This Document 218 | 219 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 220 | 221 | 222 | ### Pixel Count 223 | 224 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 225 | 226 | ### Contact Info 227 | 228 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 229 | 230 | 231 | ### External Links 232 | 233 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 234 | 235 | 236 | 237 | ``` 238 | This is the final element on the page and there should be no margin below this. 239 | ``` 240 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Network/Ponycopters/configuring-ponycopters.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Configuring Ponycopters" 3 | linkTitle: "Configuring Ponycopters" 4 | date: 2017-01-05 5 | weight: 2 6 | description: > 7 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page. Replace it with your own content. 12 | {{% /pageinfo %}} 13 | 14 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 15 | 16 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 17 | 18 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 19 | 20 | > There should be no margin above this first sentence. 21 | > 22 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 23 | > 24 | > There should be no margin below this final sentence. 25 | 26 | ## First Header 2 27 | 28 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 29 | 30 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 31 | 32 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 33 | 34 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 35 | 36 | 37 | ## Second Header 2 38 | 39 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 40 | 41 | ### Header 3 42 | 43 | ``` 44 | This is a code block following a header. 45 | ``` 46 | 47 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 48 | 49 | #### Header 4 50 | 51 | * This is an unordered list following a header. 52 | * This is an unordered list following a header. 53 | * This is an unordered list following a header. 54 | 55 | ##### Header 5 56 | 57 | 1. This is an ordered list following a header. 58 | 2. This is an ordered list following a header. 59 | 3. This is an ordered list following a header. 60 | 61 | ###### Header 6 62 | 63 | | What | Follows | 64 | |-----------|-----------------| 65 | | A table | A header | 66 | | A table | A header | 67 | | A table | A header | 68 | 69 | ---------------- 70 | 71 | There's a horizontal rule above and below this. 72 | 73 | ---------------- 74 | 75 | Here is an unordered list: 76 | 77 | * Liverpool F.C. 78 | * Chelsea F.C. 79 | * Manchester United F.C. 80 | 81 | And an ordered list: 82 | 83 | 1. Michael Brecker 84 | 2. Seamus Blake 85 | 3. Branford Marsalis 86 | 87 | And an unordered task list: 88 | 89 | - [x] Create a Hugo theme 90 | - [x] Add task lists to it 91 | - [ ] Take a vacation 92 | 93 | And a "mixed" task list: 94 | 95 | - [ ] Pack bags 96 | - ? 97 | - [ ] Travel! 98 | 99 | And a nested list: 100 | 101 | * Jackson 5 102 | * Michael 103 | * Tito 104 | * Jackie 105 | * Marlon 106 | * Jermaine 107 | * TMNT 108 | * Leonardo 109 | * Michelangelo 110 | * Donatello 111 | * Raphael 112 | 113 | Definition lists can be used with Markdown syntax. Definition headers are bold. 114 | 115 | Name 116 | : Godzilla 117 | 118 | Born 119 | : 1952 120 | 121 | Birthplace 122 | : Japan 123 | 124 | Color 125 | : Green 126 | 127 | 128 | ---------------- 129 | 130 | Tables should have bold headings and alternating shaded rows. 131 | 132 | | Artist | Album | Year | 133 | |-------------------|-----------------|------| 134 | | Michael Jackson | Thriller | 1982 | 135 | | Prince | Purple Rain | 1984 | 136 | | Beastie Boys | License to Ill | 1986 | 137 | 138 | If a table is too wide, it should scroll horizontally. 139 | 140 | | Artist | Album | Year | Label | Awards | Songs | 141 | |-------------------|-----------------|------|-------------|----------|-----------| 142 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 143 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 144 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 145 | 146 | ---------------- 147 | 148 | Code snippets like `var foo = "bar";` can be shown inline. 149 | 150 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 151 | 152 | Code can also be shown in a block element. 153 | 154 | ``` 155 | foo := "bar"; 156 | bar := "foo"; 157 | ``` 158 | 159 | Code can also use syntax highlighting. 160 | 161 | ```go 162 | func main() { 163 | input := `var foo = "bar";` 164 | 165 | lexer := lexers.Get("javascript") 166 | iterator, _ := lexer.Tokenise(nil, input) 167 | style := styles.Get("github") 168 | formatter := html.New(html.WithLineNumbers()) 169 | 170 | var buff bytes.Buffer 171 | formatter.Format(&buff, style, iterator) 172 | 173 | fmt.Println(buff.String()) 174 | } 175 | ``` 176 | 177 | ``` 178 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 179 | ``` 180 | 181 | Inline code inside table cells should still be distinguishable. 182 | 183 | | Language | Code | 184 | |-------------|--------------------| 185 | | Javascript | `var foo = "bar";` | 186 | | Ruby | `foo = "bar"{` | 187 | 188 | ---------------- 189 | 190 | Small images should be shown at their actual size. 191 | 192 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 193 | 194 | Large images should always scale down and fit in the content container. 195 | 196 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 197 | 198 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 199 | 200 | 201 | ## Components 202 | 203 | ### Alerts 204 | 205 | {{< alert >}}This is an alert.{{< /alert >}} 206 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 207 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 208 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 209 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 210 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 211 | 212 | 213 | ## Another Heading 214 | 215 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 216 | 217 | ### This Document 218 | 219 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 220 | 221 | 222 | ### Pixel Count 223 | 224 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 225 | 226 | ### Contact Info 227 | 228 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 229 | 230 | 231 | ### External Links 232 | 233 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 234 | 235 | 236 | 237 | ``` 238 | This is the final element on the page and there should be no margin below this. 239 | ``` 240 | -------------------------------------------------------------------------------- /content/docs/2-Infra/Linux/linux.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: ["linux", "sample", "docs"] 3 | title: "linux基础" 4 | linkTitle: "linux基础" 5 | date: 2017-01-05 6 | description: > 7 | A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs. 8 | --- 9 | 10 | {{% pageinfo %}} 11 | This is a placeholder page. Replace it with your own content. 12 | {{% /pageinfo %}} 13 | 14 | 15 | Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over). 16 | 你好,测试中文搜索。 17 | There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde. 18 | ```bash 19 | ➜ docsy git:(master) ✗ ls 20 | assets content deploy.sh Dockerfile layouts netlify.toml README.md themes 21 | config.toml CONTRIBUTING.md docker-compose.yaml i18n LICENSE package.json resources 22 | ``` 23 | 90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**. 24 | 25 | > There should be no margin above this first sentence. 26 | > 27 | > Blockquotes should be a lighter gray with a border along the left side in the secondary color. 28 | > 29 | > There should be no margin below this final sentence. 30 | 31 | ## First Header 2 32 | 33 | This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay! 34 | 35 | Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque. 36 | 37 | On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width. 38 | 39 | Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**. 40 | 41 | 42 | ## Second Header 2 43 | 44 | > This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 45 | 46 | ### Header 3 47 | 48 | ``` 49 | This is a code block following a header. 50 | ``` 51 | 52 | Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan. 53 | 54 | #### Header 4 55 | 56 | * This is an unordered list following a header. 57 | * This is an unordered list following a header. 58 | * This is an unordered list following a header. 59 | 60 | ##### Header 5 61 | 62 | 1. This is an ordered list following a header. 63 | 2. This is an ordered list following a header. 64 | 3. This is an ordered list following a header. 65 | 66 | ###### Header 6 67 | 68 | | What | Follows | 69 | |-----------|-----------------| 70 | | A table | A header | 71 | | A table | A header | 72 | | A table | A header | 73 | 74 | ---------------- 75 | 76 | There's a horizontal rule above and below this. 77 | 78 | ---------------- 79 | 80 | Here is an unordered list: 81 | 82 | * Liverpool F.C. 83 | * Chelsea F.C. 84 | * Manchester United F.C. 85 | 86 | And an ordered list: 87 | 88 | 1. Michael Brecker 89 | 2. Seamus Blake 90 | 3. Branford Marsalis 91 | 92 | And an unordered task list: 93 | 94 | - [x] Create a Hugo theme 95 | - [x] Add task lists to it 96 | - [ ] Take a vacation 97 | 98 | And a "mixed" task list: 99 | 100 | - [ ] Pack bags 101 | - ? 102 | - [ ] Travel! 103 | 104 | And a nested list: 105 | 106 | * Jackson 5 107 | * Michael 108 | * Tito 109 | * Jackie 110 | * Marlon 111 | * Jermaine 112 | * TMNT 113 | * Leonardo 114 | * Michelangelo 115 | * Donatello 116 | * Raphael 117 | 118 | Definition lists can be used with Markdown syntax. Definition headers are bold. 119 | 120 | Name 121 | : Godzilla 122 | 123 | Born 124 | : 1952 125 | 126 | Birthplace 127 | : Japan 128 | 129 | Color 130 | : Green 131 | 132 | 133 | ---------------- 134 | 135 | Tables should have bold headings and alternating shaded rows. 136 | 137 | | Artist | Album | Year | 138 | |-------------------|-----------------|------| 139 | | Michael Jackson | Thriller | 1982 | 140 | | Prince | Purple Rain | 1984 | 141 | | Beastie Boys | License to Ill | 1986 | 142 | 143 | If a table is too wide, it should scroll horizontally. 144 | 145 | | Artist | Album | Year | Label | Awards | Songs | 146 | |-------------------|-----------------|------|-------------|----------|-----------| 147 | | Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life | 148 | | Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain | 149 | | Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill | 150 | 151 | ---------------- 152 | 153 | Code snippets like `var foo = "bar";` can be shown inline. 154 | 155 | Also, `this should vertically align` ~~`with this`~~ ~~and this~~. 156 | 157 | Code can also be shown in a block element. 158 | 159 | ``` 160 | foo := "bar"; 161 | bar := "foo"; 162 | ``` 163 | 164 | Code can also use syntax highlighting. 165 | 166 | ```go 167 | func main() { 168 | input := `var foo = "bar";` 169 | 170 | lexer := lexers.Get("javascript") 171 | iterator, _ := lexer.Tokenise(nil, input) 172 | style := styles.Get("github") 173 | formatter := html.New(html.WithLineNumbers()) 174 | 175 | var buff bytes.Buffer 176 | formatter.Format(&buff, style, iterator) 177 | 178 | fmt.Println(buff.String()) 179 | } 180 | ``` 181 | 182 | ``` 183 | Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. 184 | ``` 185 | 186 | Inline code inside table cells should still be distinguishable. 187 | 188 | | Language | Code | 189 | |-------------|--------------------| 190 | | Javascript | `var foo = "bar";` | 191 | | Ruby | `foo = "bar"{` | 192 | 193 | ---------------- 194 | 195 | Small images should be shown at their actual size. 196 | 197 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 198 | 199 | Large images should always scale down and fit in the content container. 200 | 201 | ![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg) 202 | 203 | _The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._ 204 | 205 | 206 | ## Components 207 | 208 | ### Alerts 209 | 210 | {{< alert >}}This is an alert.{{< /alert >}} 211 | {{< alert title="Note" >}}This is an alert with a title.{{< /alert >}} 212 | {{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}} 213 | {{< alert color="success" >}}This is a successful alert.{{< /alert >}} 214 | {{< alert color="warning" >}}This is a warning.{{< /alert >}} 215 | {{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}} 216 | 217 | 218 | ## Another Heading 219 | 220 | Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong. 221 | 222 | ### This Document 223 | 224 | Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae. 225 | 226 | 227 | ### Pixel Count 228 | 229 | Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic. 230 | 231 | ### Contact Info 232 | 233 | Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly. 234 | 235 | 236 | ### External Links 237 | 238 | Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat. 239 | 240 | 241 | 242 | ``` 243 | This is the final element on the page and there should be no margin below this. 244 | ``` 245 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | --------------------------------------------------------------------------------