Skip to content

Commit b9484a6

Browse files
committed
fix: order logic and remove broken links
1 parent 9e2c774 commit b9484a6

12 files changed

Lines changed: 40 additions & 15 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<nav>
2+
<ul class="breadcrumb">
3+
{{ for item of nav.breadcrumb(url, `lang=${lang} hide_menu!=true`) }}
4+
{{ if item.data.url }}
5+
<li class="breadcrumb-item">
6+
{{ if item.data.url !== url }}
7+
<a href="{{ item.data.url }}">{{
8+
item.data.nav_title || item.data.title || item.data.basename
9+
}}</a>
10+
{{ else }}
11+
{{ item.data.nav_title || item.data.title || item.data.basename }}
12+
{{ /if }}
13+
</li>
14+
{{ else }}
15+
<li class="breadcrumb-item">
16+
<strong>{{ item.data.basename }}</strong>
17+
</li>
18+
{{ /if }}
19+
{{ /for }}
20+
</ul>
21+
</nav>

src/brainpod.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ Your team sees the complete history, can roll back if needed, and collaborates o
6464

6565
Ready to work with specific resource types and start building?
6666

67-
- [Resources](resources.md): Learn about Apps and Routes in detail
6867
- [Getting Started](getting-started.md): Deploy your first application
69-
- [background information](background-information.md): Review the foundation
68+
- [Resources](resources.md): Learn about Apps and Routes in detail
69+
- [Background Information](background-information.md): Review the foundation

src/custom_domains.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,7 @@ To add multiple domains, simply add each domain when creating or editing your ro
4545
Each domain gets its own TLS certificate and verification status on the Domains page. All domains on a route use the same routing rules and point to the same apps.
4646

4747
## Next Steps
48+
49+
- [Routes](resources/routes.md): Learn about route configuration and routing rules
4850
- [Resources](resources.md): Learn about apps and routes
4951
- [Getting Started](getting-started.md): Deploy your first application

src/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ This same workflow applies whether you're deploying your first app or updating a
8686

8787
Now that you have a basic application running, explore these topics:
8888

89-
- [Push your own images](registry.md) to Brainpod's private registry
90-
- [Configure apps](resources/apps.md) with environment variables and scaling
91-
- [Set up custom domains](resources/routes.md#hostnames-and-domains) for your routes
9289
- [Learn about resources](resources.md) and how apps and routes work together
90+
- [Configure apps](resources/apps.md) with environment variables and scaling
91+
- [Push your own images](registry.md) to Brainpod's private registry
92+
- [Set up custom domains](custom_domains.md) for your routes
9393

9494
## Common Questions
9595

src/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
id: index
33
title: "Brainpod Docs - European Cloud-Native Application Platform"
4+
nav_title: "Brainpod Docs"
45
hide_menu: false
56
metas:
67
title: "Brainpod Docs - European Cloud-Native Application Platform"
@@ -25,4 +26,4 @@ Brainpod is a European cloud-native application platform that makes deploying an
2526

2627
## Next Steps
2728

28-
- [Cloud-Native Concepts](cloud-native.md): Review the foundation
29+
- [Getting Started](getting-started.md): Deploy your first application

src/registry.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ The registry works with any tool that supports Docker registries-GitHub Actions,
9898

9999
Ready to push your first image?
100100

101-
- [API Keys](/api-keys.md): Generate and manage API keys
102-
- [Getting Started](/getting-started.md): Deploy an app using a registry image
103-
- [Resources](/resources.md): Learn about Apps and Routes
101+
- [Apps](resources/apps.md): Use registry images in your apps
102+
- [Builds](builds.md): Automate image builds from GitHub
103+
- [Getting Started](getting-started.md): Deploy an app using a registry image

src/resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ Ready to deploy your first application?
4747

4848
- [Apps](resources/apps.md): Deploy containerized applications
4949
- [Routes](resources/routes.md): Expose apps on the internet
50-
- [Getting Started](getting-started.md): Deploy your first app and route
5150
- [Container Registry](registry.md): Push private images
51+
- [Getting Started](getting-started.md): Deploy your first app and route
5252
- [Brainpod Concepts](brainpod.md): Review core concepts

src/resources/apps.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ You can add multiple mounts to a single app.
7070
## Next Steps
7171

7272
- [Routes](routes.md): Make your app accessible on the internet
73-
- [Getting Started](../getting-started.md): Deploy your first app
73+
- [Disks](disks.md): Add persistent storage to your app
74+
- [Config](config.md): Mount configuration files into your app
7475
- [Container Registry](../registry.md): Push private images to Brainpod
7576
- [Resources](../resources.md): Overview of Brainpod resources

src/resources/mariadb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In your app's environment variable configuration, you would set it up like this:
5454

5555
## Next Steps
5656

57-
- [Disks](disks.md): Create a disk for your database to use
5857
- [Apps](apps.md): Connect your app to a MariaDB
58+
- [Disks](disks.md): Create a disk for your database to use
5959
- [PostgresDB](postgres.md): PostgreSQL alternative
6060
- [Resources](../resources.md): Overview of Brainpod resources

src/resources/postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In your app's environment variable configuration, you would set it up like this:
5454

5555
## Next Steps
5656

57-
- [Disks](disks.md): Create a disk for your database to use
5857
- [Apps](apps.md): Connect your app to a PostgresDB
58+
- [Disks](disks.md): Create a disk for your database to use
5959
- [MariaDB](mariadb.md): MySQL-compatible alternative
6060
- [Resources](../resources.md): Overview of Brainpod resources

0 commit comments

Comments
 (0)