-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathsitemap
executable file
·20 lines (18 loc) · 1.22 KB
/
sitemap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Common
homepage : @(Homepage) --> /
posts : @(Blog) --> @(/blog/) --> homepage
post : @(Post) --> @(/blog/{0}/) --> posts
notices : @(Notices) --> @(/notices/) --> homepage
// Admin area
admin : @(Admin) --> @(/admin/*)
// Eshop
checkout : @(Checkout) --> @(/checkout/) --> homepage
category : @(All products) --> @(/categories/*) --> homepage
detail : @(Product detail) --> @(/detail/{0}/) --> category
top : @(Top products) --> @(/top/) --> homepage
new : @(New products) --> @(/new/) --> homepage
popular : @(Popular products) --> @(/popular/) --> homepage
account : @(My account) --> @(/account/) --> homepage
order : @(Order detail) --> @(/checkout/{0}/) --> account
settings : @(Account settings) --> @(/account/settings/) --> account
logoff : @(Logoff) --> @(/logoff/) --> homepage