2023-08-03 21:52:50 +03:00
|
|
|
|
export const routes = {
|
|
|
|
|
404: {
|
|
|
|
|
template: '/pages/404.html',
|
|
|
|
|
title: '404',
|
|
|
|
|
description: 'Page not found',
|
|
|
|
|
},
|
|
|
|
|
'/': {
|
|
|
|
|
template: '/pages/home.html',
|
|
|
|
|
title: 'a2s',
|
|
|
|
|
description: '...',
|
|
|
|
|
},
|
|
|
|
|
about: {
|
|
|
|
|
template: '/pages/about.html',
|
|
|
|
|
title: 'О сайте',
|
|
|
|
|
description: '...',
|
|
|
|
|
},
|
|
|
|
|
games: {
|
|
|
|
|
template: '/pages/games.html',
|
|
|
|
|
title: 'Games',
|
|
|
|
|
description: '...',
|
|
|
|
|
},
|
2023-08-03 22:00:37 +03:00
|
|
|
|
trash: {
|
|
|
|
|
template: '/pages/trash.html',
|
|
|
|
|
title: 'Trash',
|
|
|
|
|
description: '...',
|
|
|
|
|
},
|
|
|
|
|
personal: {
|
|
|
|
|
template: '/pages/personal.html',
|
|
|
|
|
title: 'Personal',
|
|
|
|
|
description: '...',
|
2023-08-03 23:39:02 +03:00
|
|
|
|
script: true,
|
2023-08-03 22:00:37 +03:00
|
|
|
|
},
|
2023-08-04 00:28:32 +03:00
|
|
|
|
rer2: {
|
|
|
|
|
template: '/pages/rer2.html',
|
2023-08-06 01:49:23 +03:00
|
|
|
|
title: 'RE: Revelation 2 — Статус ежемесячных событий «Вторжение огромных тварей»',
|
2023-08-04 00:28:32 +03:00
|
|
|
|
description: '...',
|
|
|
|
|
script: true,
|
|
|
|
|
},
|
2023-08-03 21:52:50 +03:00
|
|
|
|
};
|