43 | 1 == 0 false
44 | 1 == 1 true
45 | 0 == 1 false
46 | 0 == 0 true
47 |
--------------------------------------------------------------------------------
/content/talks/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Talks"
3 | pre =" "
4 | +++
5 |
--------------------------------------------------------------------------------
/content/talks/talks/bsides.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Bsides"
3 | draft: false
4 | ---
5 |
6 |
7 | {{% panel="The Battle for OSINT Are you Team GUI or Team Command Line" header="The Battle for OSINT Are you Team GUI or Team Command Line (Tracy Z Maleeff & Joe Gray)" theme="default" %}}
8 |
9 |
10 |
11 | {{% /panel %}}
12 |
13 | {{% panel="Running Circles On Social Media - Intelligent OSINT" header="Running Circles On Social Media - Intelligent OSINT" theme="default" %}}
14 |
15 |
16 |
17 | {{% /panel %}}
18 |
--------------------------------------------------------------------------------
/content/talks/talks/circlecity.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Circle City Con"
3 | draft: false
4 | ---
5 |
6 | {{% panel="Fantastic OSINT & where to find it" header="Fantastic OSINT & where to find it (Tony Robinson)" theme="default" %}}
7 |
8 |
9 |
10 | {{% /panel %}}
11 |
12 | {{% panel="OSINT And Your World A Love Story" header="OSINT And Your World A Love Story (Michael James)" theme="default" %}}
13 |
14 |
15 |
16 | {{% /panel %}}
17 |
--------------------------------------------------------------------------------
/content/talks/talks/defcon.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Defcon"
3 | draft: false
4 | ---
5 |
6 | {{% panel="Defcon 21 Dark Arts of OSINT" header="Defcon 21 Dark Arts of OSINT" theme="default" %}}
7 |
8 |
9 |
10 | {{% /panel %}}
11 |
12 | {{% panel="Confessions of a Professional Cyber Stalker" header="Confessions of a Professional Cyber Stalker (Ken Westin)" theme="default" %}}
13 |
10 | {{% /panel %}}
11 |
12 | {{% panel="OSINT Beyond the Basics" header="OSINT Beyond the Basics (Rick Hayes & Karthik Rangarajan)" theme="default" %}}
13 |
14 |
15 |
16 | {{% /panel %}}
17 |
--------------------------------------------------------------------------------
/content/talks/talks/hackfest.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Hackfest"
3 | draft: false
4 | ---
5 |
6 |
7 | {{% panel="OSINT Beyond the Basics" header="A SE Journey Through An IT Pro’s Social Media Profile (Shane MacDougall)" theme="default" %}}
8 |
9 |
10 |
11 | {{% /panel %}}
12 |
--------------------------------------------------------------------------------
/content/talks/talks/other.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Other"
3 | draft: false
4 | ---
5 |
6 | {{% panel="Hunchly OSINT Investigation: Who Is That Brazilian Bank?" header="Hunchly OSINT Investigation: Who Is That Brazilian Bank?" theme="default" %}}
7 |
8 |
9 |
10 | {{% /panel %}}
11 |
--------------------------------------------------------------------------------
/themes/docdock/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | public/
3 |
--------------------------------------------------------------------------------
/themes/docdock/LICENSE.md:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Grav
4 | Copyright (c) 2016 MATHIEU CORNIC
5 | Copyright (c) 2017 Valere JEANTET
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy of
8 | this software and associated documentation files (the "Software"), to deal in
9 | the Software without restriction, including without limitation the rights to
10 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
11 | the Software, and to permit persons to whom the Software is furnished to do so,
12 | subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
19 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
20 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/themes/docdock/README.md:
--------------------------------------------------------------------------------
1 | # Hugo docDock Theme
2 |
3 | This repository contains a theme for [Hugo](https://gohugo.io/), based on great [Matcornic Learn theme](https://github.com/matcornic/hugo-theme-learn/).
4 |
5 | Visit the [theme documentation](http://docdock.netlify.com/) to see what is going on. It is actually built with this theme.
6 |
7 | # Main features
8 |
9 | - Search
10 | - **Unlimited menu levels**
11 | - RevealJS presentation from markdown (embededed or fullscreen page)
12 | - Attachments files
13 | - List child pages
14 | - Include segment of content from one page in another (Excerpt)
15 | - Automatic next/prev buttons to navigate through menu entries
16 | - Mermaid diagram
17 | - Icons, Buttons, Alerts, Panels, Tip/Note/Info/Warning boxes
18 | - Image resizing, shadow...
19 | - Customizable look and feel
20 |
21 | ## Installation
22 | Navigate to your themes folder in your Hugo site and use the following commands:
23 | ```
24 | $ cd themes
25 | $ git clone https://github.com/vjeantet/hugo-theme-docdock.git docdock
26 | ```
27 |
28 | Check that your Hugo version is minimum `0.25` with `hugo version`.
29 |
30 | 
31 |
32 | ## Usage
33 |
34 | - [Visit the documentation](http://docdock.netlify.com/)
--------------------------------------------------------------------------------
/themes/docdock/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | title= "{{ replace .TranslationBaseName "-" " " | title }}"
3 | date= {{ .Date }}
4 | description = ""
5 | draft= true
6 | +++
7 |
8 | Lorem Ipsum.
9 | Notice `draft` is set to true.
10 |
--------------------------------------------------------------------------------
/themes/docdock/archetypes/slide.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Slide title"
3 | type="slide"
4 |
5 | theme = "league"
6 | [revealOptions]
7 | transition= 'concave'
8 | controls= true
9 | progress= true
10 | history= true
11 | center= true
12 | +++
13 |
14 | # Slide 1
15 |
16 | ___
17 |
18 | ## Slide 1.1
19 |
20 | - Turn off alarm
21 | - Get out of bed
22 |
23 | ___
24 |
25 | ## Slide 1.2
26 |
27 | - Eat eggs
28 | - Drink coffee
29 |
30 | ---
31 |
32 | # Slide 2
33 |
34 | ___
35 |
36 | ## Slide 2.1
37 |
38 | - Eat spaghetti
39 | - Drink wine
40 |
41 | ___
42 |
43 | ## Slide 2.2
44 |
45 | - Get in bed
46 | - Count sheep
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/config.toml:
--------------------------------------------------------------------------------
1 | baseURL = "/"
2 | languageCode = "en-us"
3 | DefaultContentLanguage = "en"
4 |
5 | title = "Docdock"
6 | theme = "hugo-theme-docdock"
7 | themesdir = "../.."
8 |
9 | [params]
10 | editURL = "https://github.com/vjeantet/hugo-theme-docdock/edit/master/exampleSite/content/"
11 | noHomeIcon = false # default is false
12 | noSearch = false # default is false
13 | showVisitedLinks = true # default is false
14 | # themeStyle = "theme" # overide base css
15 | themeVariant = "" # choose theme variant "green", "gold" , "gray", "blue" (default)
16 | ordersectionsby = "weight" # ordersectionsby = "title"
17 |
18 | [outputs]
19 | home = [ "HTML", "RSS", "JSON"]
20 |
21 |
22 | [[menu.shortcuts]]
23 | pre = "
More
"
24 | name = " Github repo"
25 | identifier = "ds"
26 | url = "https://github.com/vjeantet/hugo-theme-docdock"
27 | weight = 10
28 |
29 | [[menu.shortcuts]]
30 | name = " Showcases"
31 | url = "/showcase"
32 | weight = 11
33 |
34 | [[menu.shortcuts]]
35 | name = " Hugo Documentation"
36 | identifier = "hugodoc"
37 | url = "https://gohugo.io/"
38 | weight = 20
39 |
40 | [[menu.shortcuts]]
41 | name = " Credits"
42 | url = "/credits"
43 | weight = 30
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/_header.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "header"
3 | description = ""
4 | date = "2017-04-24T18:36:24+02:00"
5 | +++
6 | DocDock Documentation
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/content-organisation/customize-style/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Customize website look and feel"
3 | Weight=3
4 | +++
5 |
6 | You can change the style and behavior of the theme without touching it.
7 |
8 | * inject your own html, css or js into the page
9 | * overide existing css or js with your own files
10 |
11 | ## Inject your HTML
12 |
13 | ### into the \ part of each page :
14 |
15 | Create a `custom-head.html` into a `layouts/partials` folder next to the content folder
16 |
17 | > * content/
18 | > * layouts/
19 | > * partials/
20 | > * custom-head.html
21 |
22 | now feel free to add the JS, CSS, HTML code you want :)
23 |
24 | ### at the end of the body part of each page :
25 |
26 | Create a `custom-footer.html` into a `layouts/partials` folder next to the content folder
27 |
28 | > * content/
29 | > * layouts/
30 | > * partials/
31 | > * custom-footer.html
32 |
33 | now feel free to add the JS, CSS, HTML code you want :)
34 |
35 | ## overide existing CSS or JS
36 |
37 | Create the matching file in your static folder, hugo will use yours instead of the theme's one.
38 | Example :
39 |
40 | create a theme.css and place it into `static/css/` to fully overide docdock's theme.css
41 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/content-organisation/customize-style/theme-variants.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Theme variants"
3 | description = "change theme style/colors"
4 | +++
5 |
6 | In site configuration file, you can set a variant name of this theme to load a specific css, with different color specifications.
7 |
8 | add a param `themeVariant = "VARIANT_NAME"` in the `[params]` part of config.toml file.
9 |
10 | {{%info%}}Available variants change only colors at this moment{{%/info%}}
11 |
12 |
13 | ## Variant "gray"
14 | ```
15 | [params]
16 | themeVariant = "gray"
17 | ```
18 |
19 | 
20 |
21 | ## Variant "gold"
22 | ```
23 | [params]
24 | themeVariant = "gold"
25 | ```
26 |
27 | 
28 |
29 | ## Variant "green"
30 | ```
31 | [params]
32 | themeVariant = "green"`
33 | ```
34 |
35 | 
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/content-organisation/extramenu.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Extra menu entries"
3 | date = "2017-04-29T18:36:24+02:00"
4 | Weight=2
5 | +++
6 |
7 | You can define additional menu entries in the navigation menu without any link to content.
8 |
9 | Edit the website configuration `config.toml` and add a `[[menu.shortcuts]]` entry for each link your want to add.
10 |
11 |
12 | Example from the current website, **note the `pre` param** which allows you to insert HTML code and used here to separate content's menu from this "static" menu
13 |
14 | [[menu.shortcuts]]
15 | pre = "
More
"
16 | name = " Github repo"
17 | identifier = "ds"
18 | url = "https://github.com/vjeantet/hugo-theme-docdock"
19 | weight = 1
20 |
21 | [[menu.shortcuts]]
22 | name = " Hugo Documentation"
23 | identifier = "hugodoc"
24 | url = "https://gohugo.io/"
25 | weight = 2
26 |
27 |
28 | [{{%icon circle-arrow-right%}} Read more about hugo and menu here](https://gohugo.io/extras/menus/)
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/content-organisation/logo.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Logo placeholder"
3 | description = ""
4 | date = "2017-04-24T18:36:24+02:00"
5 | Weight=1
6 | +++
7 |
8 | Create a `_header.md` page in content folder. Its content is what you get in the logo placeholder (top left of the screen).
9 |
10 | {{%alert info%}}**Tip :** you can add a image, a combobox with links to other documentation....{{%/alert%}}
11 |
12 | {{%alert info%}}**Tip 2 :** look at [ extra static menu]({{%relref "extramenu.md"%}}) if you want to add links to other website in this sidebar{{%/alert%}}
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/create-page/homepage.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Home page"
3 | description = ""
4 | date = "2017-04-28T18:36:24+02:00"
5 | tags = ["tag1","tag2"]
6 | +++
7 |
8 | To tell Hugo-theme-docdock to consider a page as homepage's content, just create a content file named `_index.md` in content folder.
9 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/create-page/myslide.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "My Slide ! fullscreen"
3 | date = "2017-04-24T18:36:24+02:00"
4 | type="slide"
5 | hidden=true
6 |
7 | theme = "league"
8 | [revealOptions]
9 | transition= 'concave'
10 | controls= true
11 | progress= true
12 | history= false
13 | center= true
14 | +++
15 |
16 | # In the morning
17 |
18 | ___
19 |
20 | ## Getting up
21 |
22 | - Turn off alarm
23 | - Get out of bed
24 |
25 | ___
26 |
27 | ## Breakfast
28 |
29 | - Eat eggs
30 | - Drink coffee
31 |
32 | ---
33 |
34 | # In the evening
35 |
36 | ___
37 |
38 | ## Dinner
39 |
40 | - Eat spaghetti
41 | - Drink wine
42 |
43 | ___
44 |
45 | ## Going to sleep
46 |
47 | - Get in bed
48 | - Count sheep
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/create-page/page-images.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "About images"
3 | date = "2017-04-24T18:36:24+02:00"
4 | +++
5 |
6 | Images have a similar syntax to links but include a preceding exclamation point.
7 |
8 | 
9 |
10 | 
11 |
12 | ## Resizing image
13 |
14 | Add HTTP parameters `width` and/or `height` to the link image to resize the image. Values are CSS values (default is `auto`).
15 |
16 |
17 | 
18 |
19 | 
20 |
21 |
22 | ## Add CSS classes
23 |
24 | Add a HTTP `classes` parameter to the link image to add CSS classes. `shadow` and `border` are available but you could define other ones.
25 |
26 | 
27 |
28 | 
29 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/getting-start/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Getting start"
3 | description = ""
4 | weight = 1
5 | alwaysopen = true
6 | +++
7 |
8 | ## Requirements
9 |
10 | Download [Hugo binary](https://gohugo.io/overview/installing/) for your OS (Windows, Linux, Mac) : it’s that simple
11 |
12 | {{%children style="h2" description="true"%}}
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/getting-start/configuration.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Configuration"
3 | description = ""
4 | weight = 2
5 | +++
6 |
7 | When building the website, you can set a theme by using `--theme` option. We suggest you to edit your configuration file and set the theme by default. Example with `config.toml` format.
8 |
9 | ```
10 | theme = "docdock"
11 | ```
12 |
13 | ## Search index generation
14 |
15 | Add the follow line in the same `config.toml` file.
16 |
17 | ```
18 | [outputs]
19 | home = [ "HTML", "RSS", "JSON"]
20 | ```
21 |
22 | LUNRJS search index file will be generated on content changes.
23 |
24 | ## Your website's content
25 |
26 | Find out how to [create]({{%relref "create-page/_index.md"%}}) and [organize your content]({{%relref "content-organisation/_index.md"%}}) quickly and intuitively.
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/getting-start/installation.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Installation"
3 | description = ""
4 | weight = 1
5 | +++
6 |
7 | {{% alert theme="warning" %}}HUGO **v0.25** minimum required to use this theme{{%/alert%}}
8 |
9 | The following steps are here to help you initialize your new website. If you don’t know Hugo at all, we strongly suggest you to train by following this [great documentation for beginners](https://gohugo.io/overview/quickstart/).
10 |
11 |
12 | ## Create Your Documentation
13 |
14 | Hugo provides a `new` command to create a new website.
15 |
16 | $ hugo new site
17 |
18 | ## Install The Theme
19 |
20 | Install the **Hugo-theme-docdock** theme by following this
21 |
22 | Switch into the themes directory and download the theme
23 |
24 | $ cd themes
25 | $ git clone https://github.com/vjeantet/hugo-theme-docdock.git docdock
26 |
27 | Alternatively, you can [{{%icon download%}} download the theme as .zip](https://github.com/vjeantet/hugo-theme-docdock/archive/master.zip) file and extract it in the themes directory
28 |
29 | ## Basic Configuration
30 |
31 | [Follow instructions here]({{%relref "configuration.md"%}})
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/search/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "About the Search Engine"
3 | description = ""
4 | weight = 40
5 | +++
6 |
7 | **Nothing to do on your side. :-)**
8 |
9 | Docdock theme uses the last improvement available in hugo version 20+ to generate a json index file ready to be consumed by lunr.js javascript search engine.
10 |
11 | {{%note%}}hugo generate lunrjs index.json at the root of `public` folder. When you build the site with `hugo server`, hugo generates it internally and of course it don't show up in the filesystem{{%/note%}}
12 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Shortcodes"
3 | description = ""
4 | date = "2017-04-24T18:36:24+02:00"
5 | weight = 30
6 | +++
7 |
8 | A bunch of Shortcodes are available with this theme :
9 |
10 | {{%children style="h2" description="true" %}}
11 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/alert.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "alert"
3 | description = "The alert shortcode allows you to highlight information in your page."
4 | +++
5 |
6 | The `alert` shortcode allow you to highlight information in your page. They create a colored box surrounding your text, like this:
7 |
8 | {{%alert%}}**This is** an alert !{{%/alert%}}
9 | ## Usage
10 |
11 | | Parameter | Default | Description |
12 | |:--|:--|:--|
13 | | theme | `info` | `success`, `info`,`warning`,`danger` |
14 |
15 | {{%alert info%}}
16 | **Tips :** setting only the theme as argument works too :
17 | `{{%/*alert warning*/%}}` instead of `{{%/*alert theme="warning"*/%}}`
18 | {{%/alert%}}
19 |
20 | ## Basic examples
21 |
22 | {{%/* alert theme="info" */%}}**this** is a text{{%/* /alert */%}}
23 | {{%/* alert theme="success" */%}}**Yeahhh !** is a text{{%/* /alert */%}}
24 | {{%/* alert theme="warning" */%}}**Be carefull** is a text{{%/* /alert */%}}
25 | {{%/* alert theme="danger" */%}}**Beware !** is a text{{%/* /alert */%}}
26 |
27 | {{% alert theme="info"%}}**this** is an info{{% /alert %}}
28 | {{% alert theme="success" %}}**Yeahhh !** is an success{{% /alert %}}
29 | {{% alert theme="warning" %}}**Be carefull** is a warning{{% /alert %}}
30 | {{% alert theme="danger" %}}**Beware !** is a danger{{% /alert %}}
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/attachments.files/BachGavotteShort.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IVMachiavelli/Notes/ac136ddcb8b30e5fa02b8ceefa93b0ce44a8ac44/themes/docdock/exampleSite/content/shortcodes/attachments.files/BachGavotteShort.mp3
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/attachments.files/Carroll_AliceAuPaysDesMerveilles.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IVMachiavelli/Notes/ac136ddcb8b30e5fa02b8ceefa93b0ce44a8ac44/themes/docdock/exampleSite/content/shortcodes/attachments.files/Carroll_AliceAuPaysDesMerveilles.pdf
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/attachments.files/adivorciarsetoca00cape.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IVMachiavelli/Notes/ac136ddcb8b30e5fa02b8ceefa93b0ce44a8ac44/themes/docdock/exampleSite/content/shortcodes/attachments.files/adivorciarsetoca00cape.pdf
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/attachments.files/hugo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IVMachiavelli/Notes/ac136ddcb8b30e5fa02b8ceefa93b0ce44a8ac44/themes/docdock/exampleSite/content/shortcodes/attachments.files/hugo.png
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/attachments.files/movieselectricsheep-flock-244-32500-2.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IVMachiavelli/Notes/ac136ddcb8b30e5fa02b8ceefa93b0ce44a8ac44/themes/docdock/exampleSite/content/shortcodes/attachments.files/movieselectricsheep-flock-244-32500-2.mp4
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-1/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 1"
3 | description = "This is a demo child page"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 1-1"
3 | description = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 1-1-1"
3 | description = "This is a demo child page"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 1-1-1-1"
3 | description = "This is a demo child page"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 1-1-1-1-1"
3 | description = "This is a demo child page"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-2/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 2"
3 | description = ""
4 | +++
5 |
6 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
7 | tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
8 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
9 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
10 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
11 | proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-2/test3.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page test 3"
3 | description = "This is a page test"
4 | +++
5 |
6 | This is a test 3 demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-3/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 3"
3 | description = "This is a demo child page"
4 | +++
5 |
6 | This is a demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/children-4/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page 4"
3 | description = "This is a demo child page"
4 | hidden=true
5 | +++
6 |
7 | This is a demo child page, not displayed in the menu
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/children/test.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "page test"
3 | description = "This is a page test"
4 | +++
5 |
6 | This is a test demo child page
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/excerpt-include.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "excerpt-include"
3 | description = ""
4 | +++
5 |
6 | The Excerpt Include shortcode is used to display 'excerpted' (that is, a segment of) content from one page in another.
7 | Before you can use this shortcode, the excerpt must have been defined using the Excerpt shortcode. {{%alert info%}}Note that you can have more than one Excerpt Include shortcode on a page (although you can have only one Excerpt shortcode on a page).{{%/alert%}}
8 |
9 |
10 | ## Usage
11 |
12 | | Parameter | Default | Description |
13 | |:--|:--|:--|
14 | | filename | **required** | Type the filename of the page that contains the excerpt to be displayed. Path is relative to the content folder|
15 | | panel | none | Determines whether docDock will display a panel around the excerpted content. The panel includes the given panel's value and the border of the panel. By default, the panel and title are not shown.|
16 |
17 | ## Demo
18 | The paragraph below shows an example of an Excerpt Include shortcode, containing content from an excerpt which we have defined on the Excerpt shortcode page. On the Excerpt Include shortcode below, we have set the options to show both the title of the page and the panel surrounding the content.
19 |
20 | {{%/*excerpt-include filename="shortcodes/excerpt.md" panel="From excerpt page" /*/%}}
21 |
22 | {{%excerpt-include filename="shortcodes/excerpt.md" panel="From excerpt page" /%}}
23 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/shortcodes/notice.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "notice"
3 | description = "Disclaimers to help you structure your page"
4 | +++
5 |
6 | The notice shortcode shows 4 types of disclaimers to help you structure your page.
7 |
8 |
9 | ## Note
10 |
11 | {{%/* notice note */%}}
12 | A notice disclaimer
13 | {{%/* /notice */%}}
14 |
15 | renders as
16 |
17 | {{% notice note %}}
18 | A notice disclaimer
19 | {{% /notice %}}
20 |
21 |
22 | ## Info
23 |
24 | {{%/* notice info */%}}
25 | An information disclaimer
26 | {{%/* /notice */%}}
27 |
28 | renders as
29 |
30 | {{% notice info %}}
31 | An information disclaimer
32 | {{% /notice %}}
33 |
34 |
35 |
36 | ## Tip
37 |
38 | {{%/* notice tip */%}}
39 | A tip disclaimer
40 | {{%/* /notice */%}}
41 |
42 | renders as
43 |
44 | {{% notice tip %}}
45 | A tip disclaimer
46 | {{% /notice %}}
47 |
48 |
49 |
50 | ## Warning
51 |
52 | {{%/* notice warning */%}}
53 | An warning disclaimer
54 | {{%/* /notice */%}}
55 |
56 | renders as
57 |
58 | {{% notice warning %}}
59 | An warning disclaimer
60 | {{% /notice %}}
61 |
62 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/content/showcase.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "Docdock-built Sites"
3 | description = "Hugo-built Sites with docdock theme"
4 | +++
5 |
6 |
7 |
8 |
9 | #### [https://invincible.site/](https://invincible.site/) by [@shazic](https://github.com/shazic)
10 | 
11 |
12 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/layouts/partials/custom-head.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/themes/docdock/exampleSite/layouts/partials/menu-footer.html:
--------------------------------------------------------------------------------
1 |