a2s.su/app/assets/js/routes.js

33 lines
614 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: '...',
},
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 21:52:50 +03:00
};