a2s.su/app/routes.js

45 lines
974 B
JavaScript
Raw Normal View History

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: '...',
},
git: {
template: '/pages/git.html',
title: 'Мой Git инстанс',
description: '...',
},
2023-08-03 21:52:50 +03:00
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
};