40 lines
863 B
JavaScript
40 lines
863 B
JavaScript
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: '...',
|
||
},
|
||
trash: {
|
||
template: '/pages/trash.html',
|
||
title: 'Trash',
|
||
description: '...',
|
||
},
|
||
personal: {
|
||
template: '/pages/personal.html',
|
||
title: 'Personal',
|
||
description: '...',
|
||
script: true,
|
||
},
|
||
rer2: {
|
||
template: '/pages/rer2.html',
|
||
title: 'RE: Revelation 2 — Статус ежемесячных событий «Вторжение огромных тварей»',
|
||
description: '...',
|
||
script: true,
|
||
},
|
||
};
|