-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblueprint.example.json
More file actions
91 lines (91 loc) · 2.84 KB
/
Copy pathblueprint.example.json
File metadata and controls
91 lines (91 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"master_blueprint": {
"meta": {
"version": "2.0",
"brand_name": "Acme Studio",
"domain": "https://acme-studio.fr",
"locale": "fr-FR"
},
"site_structure": [
{
"route": "/",
"page_title": "Acme Studio — Design & Développement web",
"seo": {
"title_tag": "Acme Studio — Agence web Paris",
"meta_description": "Agence web spécialisée en design et développement.",
"canonical": "https://acme-studio.fr/",
"robots": "index, follow",
"hreflang": [
{ "lang": "fr", "url": "https://acme-studio.fr/" },
{ "lang": "en", "url": "https://acme-studio.fr/en/" }
]
}
},
{
"route": "/services",
"page_title": "Nos services — Acme Studio",
"seo": {
"title_tag": "Services web & design — Acme Studio",
"meta_description": "Découvrez nos services : design, développement, SEO.",
"canonical": "https://acme-studio.fr/services",
"robots": "index, follow",
"hreflang": [
{ "lang": "fr", "url": "https://acme-studio.fr/services" },
{ "lang": "en", "url": "https://acme-studio.fr/en/services" }
]
}
},
{
"route": "/about",
"page_title": "À propos — Acme Studio",
"seo": {
"title_tag": "L'équipe Acme Studio",
"meta_description": "Qui sommes-nous ? Notre histoire, nos valeurs.",
"canonical": "https://acme-studio.fr/about",
"robots": "index, follow",
"hreflang": []
}
},
{
"route": "/blog",
"page_title": "Blog — Acme Studio",
"seo": {
"title_tag": "Blog design & dev — Acme Studio",
"meta_description": "Articles, guides et ressources sur le web moderne.",
"canonical": "https://acme-studio.fr/blog",
"robots": "index, follow",
"hreflang": []
}
},
{
"route": "/contact",
"page_title": "Contact — Acme Studio",
"seo": {
"title_tag": "Nous contacter — Acme Studio",
"meta_description": "Parlez-nous de votre projet.",
"canonical": "https://acme-studio.fr/contact",
"robots": "index, follow",
"hreflang": []
}
},
{
"route": "/legal/privacy",
"page_title": "Politique de confidentialité",
"seo": {
"canonical": "https://acme-studio.fr/legal/privacy",
"robots": "noindex, follow",
"hreflang": []
}
},
{
"route": "/legal/terms",
"page_title": "Mentions légales",
"seo": {
"canonical": "https://acme-studio.fr/legal/terms",
"robots": "noindex, follow",
"hreflang": []
}
}
]
}
}