Skip to content

Commit

Permalink
fix URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
robb-j committed Dec 19, 2024
1 parent 861150a commit 93f0a9a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/development/style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tags:
- development
---

Alembic is written in TypeScript and CSS, follow [the Structure]({{ '/development/structure' | url }}) for where to put things.
Alembic is written in TypeScript and CSS, follow [the Structure]({{ '/development/structure/' | url }}) for where to put things.

General rules:

Expand All @@ -15,7 +15,7 @@ General rules:
- Keep related things together, i.e. docs + css + js + tests all in one place
- Data-driven documentation, the less hard-coded links the better
- Favour readability over completeness or correctness, people have to read code
- Use JSDoc for public TypeScript code, this is pulled into [api]({{ '/development/api' | url }})
- Use JSDoc for public TypeScript code, this is pulled into [api]({{ '/development/api/' | url }})
- Unit tested is desirable
- Opt for more-functional styles of coding, but maintain readability
- No "index.js" magic files
Expand Down
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h2>
</h2>
<p>
Building blocks for composing complex interfaces together with reusable
components. {{ link('Layouts', '/layouts' | url) }}
components. {{ link('Layouts', '/layouts/' | url) }}
</p>

<reel-layout
Expand Down Expand Up @@ -94,7 +94,7 @@ <h2>
</h2>
<p>
HTML patterns for creating simple accessible web forms. {{ link('Forms',
'/forms' | url) }}
'/forms/' | url) }}
</p>
</section>

Expand Down Expand Up @@ -147,7 +147,7 @@ <h2>
<p>
Got something that should be a part of Alembic?
<br />
{{ link('Contribute', '/development/contribute' | url) }}
{{ link('Contribute', '/development/contribute/' | url) }}
</p>
</section>

Expand Down
2 changes: 1 addition & 1 deletion src/install/spa.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ and in CSS:

## DIY

See the [api docs]({{ '/development/api' | url }}) for the tools available to hook things up yourself.
See the [api docs]({{ '/development/api/' | url }}) for the tools available to hook things up yourself.
4 changes: 2 additions & 2 deletions src/labcoat/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Quickly add basic styles to HTML to get a responsive & pretty page.

## Features

- A [HTML reset]({{ '/development/reset-css' | url }})
- A [HTML reset]({{ '/development/reset-css/' | url }})
- Setup with all [Layout elements]({{ '/layouts/' | url }})
- [Form patterns]({{ '/forms' | url }}) are available too
- [Form patterns]({{ '/forms/' | url }}) are available too
- A full height `<body>` tag
- A `<main>` element that fills the full-height `<body>` when directly nested
- A custom `<header>` at the top when no class is applied to it
Expand Down

0 comments on commit 93f0a9a

Please sign in to comment.