page meta descriptions
This commit is contained in:
parent
e2a5161557
commit
367934cdd5
2
TODO.md
2
TODO.md
|
@ -1,7 +1,7 @@
|
|||
## TODO
|
||||
* page descriptions etc
|
||||
* services - background image for mobile
|
||||
* facebook/twitter social card thingies
|
||||
* API
|
||||
|
||||
## Maybes
|
||||
* gallery page - featured images in same style as on services page with the
|
||||
|
|
|
@ -16,7 +16,7 @@ module.exports = {
|
|||
meta: [
|
||||
{ charset: 'utf-8' },
|
||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||||
{ hid: 'description', name: 'description', content: pkg.description }
|
||||
{ hid: 'description', name: 'description', content: 'The website of photographer Marc Leopold.' }
|
||||
],
|
||||
link: [
|
||||
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
|
||||
|
|
|
@ -47,7 +47,11 @@ export default {
|
|||
head () {
|
||||
return {
|
||||
title: 'About Me',
|
||||
// TODO meta - hid, name, content
|
||||
meta: [{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'All about the work of photographer Marc Leopold, his philosophy and inspirations.'
|
||||
}],
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -110,7 +110,11 @@ export default {
|
|||
head () {
|
||||
return {
|
||||
title: 'Contact Me',
|
||||
// TODO meta - hid, name, content
|
||||
meta: [{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'Contact the photographer Marc Leopold with any queries for a prompt response.'
|
||||
}],
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -16,7 +16,11 @@ export default {
|
|||
head () {
|
||||
return {
|
||||
title: 'My Galleries',
|
||||
// TODO meta - hid, name, content
|
||||
meta: [{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'A showcase of the work of photographer Marc Leopold.'
|
||||
}],
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -59,7 +59,11 @@ export default {
|
|||
head () {
|
||||
return {
|
||||
title: 'Home',
|
||||
// TODO meta - hid, name, content
|
||||
meta: [{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'The Home Page of photographer Marc Leopold.'
|
||||
}],
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -61,7 +61,11 @@ export default {
|
|||
head () {
|
||||
return {
|
||||
title: 'My Services',
|
||||
// TODO meta - hid, name, content
|
||||
meta: [{
|
||||
hid: 'description',
|
||||
name: 'description',
|
||||
content: 'An overview of the services provided by the photographer marc Leopold.'
|
||||
}],
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue