├── .gitignore ├── Another-page.md ├── README.md ├── _config.yml ├── _sass └── custom │ └── custom.scss ├── test-child.md └── test-grand-child.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-cache/ 4 | .jekyll-metadata 5 | -------------------------------------------------------------------------------- /Another-page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test 3 | has_children: true 4 | nav_order: 2 5 | --- 6 | 7 | # Another page 8 | 9 | Test this 10 | 11 | 12 | blah 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Welcome to GitHub Pages 2 | 3 | 🚀 🐼 4 | 5 | yes 6 | 7 | You can use the [editor on GitHub](https://github.com/pmarsceill/test-jtd/edit/master/README.md) to maintain and preview the content for your website in Markdown files. 8 | 9 | Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. 10 | 11 | ### Markdown 12 | 13 | Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for 14 | 15 | ```markdown 16 | Syntax highlighted code block 17 | 18 | # Header 1 19 | ## Header 2 20 | ### Header 3 21 | 22 | - Bulleted 23 | - List 24 | 25 | 1. Numbered 26 | 2. List 27 | 28 | **Bold** and _Italic_ and `Code` text 29 | 30 | [Link](url) and ![Image](src) 31 | ``` 32 | 33 | For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/). 34 | 35 | ### Jekyll Themes 36 | 37 | Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/pmarsceill/test-jtd/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file. 38 | 39 | ### Support or Contact 40 | 41 | Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out. 42 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: "Remote theme example" 2 | remote_theme: just-the-docs/just-the-docs 3 | color_scheme: "dark" 4 | search_enabled: false 5 | -------------------------------------------------------------------------------- /_sass/custom/custom.scss: -------------------------------------------------------------------------------- 1 | * { 2 | color: red !important; 3 | } 4 | -------------------------------------------------------------------------------- /test-child.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Child of Test 3 | parent: Test 4 | has_children: true 5 | nav_order: 1 6 | --- 7 | 8 | # Child of test 9 | 10 | I am a child page. 11 | -------------------------------------------------------------------------------- /test-grand-child.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Granchild of Test 3 | parent: Child of Test 4 | grand_parent: Test 5 | nav_order: 1 6 | --- 7 | 8 | # I am a grand child of test 9 | --------------------------------------------------------------------------------