Chrysoblog/src/lib/sitemap.ts

8 lines
282 B
TypeScript
Raw Normal View History

2024-09-29 17:39:40 -07:00
export const routes: { route: string, name: string, disabled?: boolean }[] = [
2024-09-16 21:33:02 -07:00
{ route: "/", name: "Home" },
{ route: "/post", name: "Blog" },
2024-10-10 12:00:35 -07:00
{ route: "/tag", name: "Tags" },
2024-09-29 17:39:40 -07:00
{ route: "/gallery", name: "Gallery", disabled: true },
2024-09-16 21:33:02 -07:00
{ route: "/archives", name: "Archives" },
];