Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jberkhahn committed Mar 21, 2019
1 parent f8e0e4a commit 758c53a
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 14 deletions.
3 changes: 3 additions & 0 deletions docs/tasks/foobar.md
@@ -0,0 +1,3 @@
# foobar

This is a landing page
19 changes: 19 additions & 0 deletions docs/tasks/index.md
@@ -0,0 +1,19 @@
---
title: Tasks
layout: docwithnav
---

This section contains pages that show how to do individual tasks. A task page
shows how to do a single thing, typically given by a short sequence of steps.

# Install and Update a Broker

foobar bananas

## foobar

abc

## bananas

123
14 changes: 7 additions & 7 deletions docsite/_config.yml
Expand Up @@ -50,15 +50,15 @@ plugins:
# Tables of contents, stored in the _data folder, that control the sidebar nav
# In order for a page to have a TOC, it's data file name must be included in this list.
tocs:
- install
- devguide
- cli
- walkthrough
- catalog-restrictions
- cli
- concepts
- resources
- devguide
- install
- ladder
- namespaced-broker-resources
- catalog-restrictions
- resources
- service-plan-defaults
- ladder
- tasks
- walkthrough
- docs-home # fallthrough, leave this last
13 changes: 10 additions & 3 deletions docsite/_data/tasks.yml
@@ -1,5 +1,12 @@
bigheader: "Tasks"
abstract: "Step-by-step instructions for performing operations with Kubernetes."
landing_page: /docs/tasks/index/
abstract: "Instructions for performing various Service Catalog tasks."
landing_page: /docs/tasks
toc:
- docs/docs/tasks/index.md
- docs/tasks/index.md
- title: Install and Update a Broker
landing_page: "#install-and-update-a-broker"
section:
- title: Foobar
path: "foobar"
- title: Bananas
path: "#bananas"
3 changes: 2 additions & 1 deletion docsite/_layouts/docsportal.html
Expand Up @@ -14,10 +14,11 @@ <h5>{{ page.abstract }}</h5>
<div id="vendorStrip" class="light-text">
<ul>
<li><a href="/docs/" {% if toc.bigheader == nil %}class="YAH"{% endif %}>HOME</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/tasks" {% if toc.bigheader == "Tasks" %}class="YAH"{% endif %}>TASKS</a></li>
<li><a href="/docs/install" {% if toc.bigheader == "Install" %}class="YAH"{% endif %}>INSTALL</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
</ul>
<div id="searchBox">
<input type="text" id="search" placeholder="Search" onkeydown="if (event.keyCode==13) window.location.replace('/docs/search/?q=' + this.value)" autofocus="autofocus">
Expand Down
7 changes: 4 additions & 3 deletions docsite/_layouts/docwithnav.html
Expand Up @@ -23,10 +23,11 @@ <h5>{{ toc.abstract }}</h5>
<div id="vendorStrip" class="light-text">
<ul>
<li><a href="/docs/" {% if toc.bigheader == nil %}class="YAH"{% endif %}>HOME</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/tasks" {% if toc.bigheader == "Tasks" %}class="YAH"{% endif %}>TASKS</a></li>
<li><a href="/docs/install" {% if toc.bigheader == "Install" %}class="YAH"{% endif %}>INSTALL</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
</ul>
<div id="searchBox">
<input type="text" id="search" placeholder="Search" onkeydown="if (event.keyCode==13) window.location.replace('/docs/search/?q=' + this.value)" autofocus="autofocus">
Expand Down

0 comments on commit 758c53a

Please sign in to comment.