forked from illuminate3/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap
14 lines (14 loc) · 1.32 KB
/
sitemap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ID : Title ---> URL --> [Parent]
homepage : @(Home) --> /
contact : @(eshop:Contact) --> /contact/ --> homepage
products : @(eshop:Products) --> /produits/ --> homepage
checkout : @(eshop:Checkout) --> /checkout/ --> homepage
shopping-cart : @(eshop:ShoppingCart) --> /shopping-cart/ --> homepage
order : @(eshop:Order) --> /checkout/{0}/ --> checkout
payment : @(eshop:CheckoutPayment) --> /checkout/{0}/{1}/ --> checkout
account : @(eshop:Account) --> /account/ --> homepage
settings : @(eshop:AccountSettings) --> /account/settings/ --> account
category : @(eshop:Category) --> /categorie/* --> products
detail : @(eshop:Product) --> /produit/{0}/{1}/ --> category
blogs : @(eshop:Blogs) --> /blogs/ --> homepage
blogsdetail : @(eshop:BlogDetail) --> /blogs/{0}/ --> blogs