page meta descriptions

This commit is contained in:
ManjaroOne666 2019-02-04 12:53:18 +00:00
parent e2a5161557
commit 367934cdd5
7 changed files with 27 additions and 7 deletions

View File

@ -1,7 +1,7 @@
## TODO ## TODO
* page descriptions etc
* services - background image for mobile * services - background image for mobile
* facebook/twitter social card thingies * facebook/twitter social card thingies
* API
## Maybes ## Maybes
* gallery page - featured images in same style as on services page with the * gallery page - featured images in same style as on services page with the

View File

@ -16,7 +16,7 @@ module.exports = {
meta: [ meta: [
{ charset: 'utf-8' }, { charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, { 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: [ link: [
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' }, { rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },

View File

@ -47,7 +47,11 @@ export default {
head () { head () {
return { return {
title: 'About Me', 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.'
}],
} }
}, },

View File

@ -110,7 +110,11 @@ export default {
head () { head () {
return { return {
title: 'Contact Me', 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.'
}],
} }
}, },

View File

@ -16,7 +16,11 @@ export default {
head () { head () {
return { return {
title: 'My Galleries', title: 'My Galleries',
// TODO meta - hid, name, content meta: [{
hid: 'description',
name: 'description',
content: 'A showcase of the work of photographer Marc Leopold.'
}],
} }
}, },

View File

@ -59,7 +59,11 @@ export default {
head () { head () {
return { return {
title: 'Home', title: 'Home',
// TODO meta - hid, name, content meta: [{
hid: 'description',
name: 'description',
content: 'The Home Page of photographer Marc Leopold.'
}],
} }
}, },

View File

@ -61,7 +61,11 @@ export default {
head () { head () {
return { return {
title: 'My Services', 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.'
}],
} }
}, },