Skip to content

Commit

Permalink
404 and redirect fix (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff authored Sep 2, 2024
1 parent 0938caf commit d0e4fee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion content/404.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ description: ""
private: true
sitemap:
disable: true
url: /404/
url: /404.html
---
6 changes: 3 additions & 3 deletions content/components/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,14 +313,14 @@ When using small variants of tables with icons and controls, don't forget to use

Add the `.sticky-top` class to the `thead` `th` for sticky header.

[View Example](/examples/table-with-sticky-header/)
[View Example](/docs/v1/examples/table-with-sticky-header/)
<br><br>

### Tables with sticky header and First Column

Add the `.sticky-top` class to the thead th for sticky header and some additional custom CSS for the sticky first column.

[View Example](/examples/table-with-sticky-header-and-column/)
[View Example](/docs/v1/examples/table-with-sticky-header-and-column/)
<br><br>

### Grid.js Data Table Integration
Expand All @@ -329,7 +329,7 @@ Add the `.sticky-top` class to the thead th for sticky header and some additiona
It supports pagination, sorting, filtering, resizable columns and more.
Modus Bootstrap CSS classes can be added at render-time.

[View Example](/examples/gridjs-table/)
[View Example](/docs/v1/examples/gridjs-table/)

<script>
$("a[href^='/examples/']").attr('target','_blank_');
Expand Down
16 changes: 8 additions & 8 deletions hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,30 +33,30 @@ outputs:
menu:
main:
- name: Getting Started
url: "getting-started/"
url: "/getting-started/"
weight: 1
- name: Layout
url: "layout/"
url: "/layout/"
weight: 2
- name: Foundations
url: "foundations/typography/"
url: "/foundations/typography/"
weight: 3
- name: Components
url: "components/"
url: "/components/"
weight: 4
- Name: Utilities
url: "utilities/borders/"
url: "/utilities/borders/"
weight: 5

start:
- name: Getting Started
url: "getting-started/"
url: "/getting-started/"
weight: 1
- name: Device Support
url: "device-support/"
url: "/device-support/"
weight: 2
- Name: Changelog
url: "changelog/"
url: "/changelog/"
weight: 3

layout:
Expand Down

0 comments on commit d0e4fee

Please sign in to comment.