Skip to content

Commit 6d47340

Browse files
authored
Merge pull request #74 from thisisobate/fix/72
chore: fix gh pages to serve correct page
2 parents 800fe77 + 9b682dd commit 6d47340

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

website/docs/how-to-guide/advanced/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Welcome to the Advanced Guides section! These guides are for experienced develop
3232

3333
Advanced guides assume you have:
3434
- Extensive experience with Cardano development
35-
- Completed multiple [Intermediate Guides](../intermediate/)
35+
- Completed multiple [Intermediate Guides](../intermediate/README.md)
3636
- Deep understanding of blockchain fundamentals
3737
- Production experience with Cardano applications
3838
- Familiarity with Haskell or other functional programming languages
@@ -50,7 +50,7 @@ At this level, you're ready to:
5050

5151
- **Core Development**: Contribute to [IntersectMBO repositories](https://github.com/IntersectMBO)
5252
- **Research**: Engage with [IOG Research](https://iohk.io/en/research/library/)
53-
- **Community Leadership**: Lead [Working Group sessions](../../working-group/)
53+
- **Community Leadership**: Lead [Working Group sessions](../../working-group/readme.md)
5454
- **Mentorship**: Help in Discord and Stack Exchange
5555

5656
## Resources for Advanced Developers

website/docs/how-to-guide/beginner/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ Found an issue or want to improve a guide? See our [Contributing Guidelines](htt
4949

5050
---
5151

52-
*Ready to dive deeper? Check out our [Intermediate Guides](../intermediate/) when you're comfortable with the basics.*
52+
*Ready to dive deeper? Check out our [Intermediate Guides](../intermediate/README.md) when you're comfortable with the basics.*

website/docs/how-to-guide/intermediate/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ Before starting these guides, you should be comfortable with:
3535
- Command-line tools (cardano-cli)
3636
- Programming fundamentals
3737
- Familiarity with [docs.cardano.org](https://docs.cardano.org) and [developers.cardano.org](https://developers.cardano.org)
38-
- Completed at least 2-3 [Beginner Guides](../beginner/)
38+
- Completed at least 2-3 [Beginner Guides](../beginner/README.md)
3939

4040
## Learning Path
4141

42-
1. Start with [Beginner Guides](../beginner/) if you haven't already
43-
2. Join the [Developer Experience Working Group](../../working-group/) for hands-on sessions
42+
1. Start with [Beginner Guides](../beginner/README.md) if you haven't already
43+
2. Join the [Developer Experience Working Group](../../working-group/readme.md) for hands-on sessions
4444
3. Practice with testnet before moving to mainnet
45-
4. Progress to [Advanced Guides](../advanced/) when ready
45+
4. Progress to [Advanced Guides](../advanced/README.md) when ready
4646

4747
## Getting Help
4848

website/docs/working-group/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ Our focus for Q1 2025 is creating a clear entry path for newcomers, addressing c
1212

1313
## Current Quarter
1414

15-
### [Q1 2025: Laying the Foundations](./q1-2025/)
15+
### [Q1 2025: Laying the Foundations](./q1-2025/README.md)
1616
Our current quarterly initiative focused on creating a clear entry path for newcomers to the Cardano ecosystem.
1717

18-
- **[Complete Plan](./q1-2025/)** - Detailed session plans and logistics
18+
- **[Complete Plan](./q1-2025/README.md)** - Detailed session plans and logistics
1919
- **All Sessions** - 12 weekly session materials (see individual session folders)
20-
- **[Resources](./q1-2025/resources/)** - Troubleshooting guides and essential bookmarks
20+
- **[Resources](./q1-2025/resources/readme.md)** - Troubleshooting guides and essential bookmarks
2121
- **Media** - Session recordings and explainer videos (coming soon)
2222

2323
## Future Quarters
@@ -66,4 +66,4 @@ This working group aims to create resources that the community adopts as the go-
6666

6767
---
6868

69-
*For detailed session plans and learning objectives, see the [Q1 2025 folder](./q1-2025/)*
69+
*For detailed session plans and learning objectives, see the [Q1 2025 folder](./q1-2025/README.md)*

website/docusaurus.config.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,28 @@ import { themes as prismThemes } from "prism-react-renderer";
22
import type { Config } from "@docusaurus/types";
33
import type * as Preset from "@docusaurus/preset-classic";
44

5+
const organizationName = "IntersectMBO";
6+
const projectName = "developer-experience";
7+
58
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
69

710
const config: Config = {
811
title: "Cardano Developer Experience",
912
tagline: "Your comprehensive guide to building on Cardano",
1013
favicon: "img/favicon.ico",
14+
// GitHub Pages adds a trailing slash by default that I don't want
15+
trailingSlash: false,
1116

1217
// Set the production url of your site here
13-
url: "https://devex.intersectmbo.org",
18+
url: `https://${organizationName}.github.io`,
1419
// Set the /<baseUrl>/ pathname under which your site is served
1520
// For GitHub pages deployment, it is often '/<projectName>/'
16-
baseUrl: "/developer-experience/",
21+
baseUrl: `/${projectName}/`,
1722

1823
// GitHub pages deployment config.
1924
// If you aren't using GitHub pages, you don't need these.
20-
organizationName: "IntersectMBO", // Usually your GitHub org/user name.
21-
projectName: "developer-experience", // Usually your repo name.
25+
organizationName, // Usually your GitHub org/user name.
26+
projectName, // Usually your repo name.
2227

2328
onBrokenLinks: "throw",
2429
onBrokenMarkdownLinks: "throw",

0 commit comments

Comments
 (0)