feat: seo meta + page titles
This commit is contained in:
		| @@ -49,15 +49,6 @@ | ||||
|                       v-model='config.description' | ||||
|                       prepend-icon='explore' | ||||
|                       ) | ||||
|                     v-text-field( | ||||
|                       outline | ||||
|                       label='Site Keywords' | ||||
|                       :counter='255' | ||||
|                       v-model='config.keywords' | ||||
|                       prepend-icon='explore' | ||||
|                       hint='Comma-separated list of keywords.' | ||||
|                       persistent-hint | ||||
|                       ) | ||||
|                     v-select.mt-2( | ||||
|                       outline | ||||
|                       label='Meta Robots' | ||||
| @@ -170,7 +161,6 @@ export default { | ||||
|         host: '', | ||||
|         title: '', | ||||
|         description: '', | ||||
|         keywords: '', | ||||
|         robots: [], | ||||
|         ga: '', | ||||
|         company: '', | ||||
| @@ -196,7 +186,6 @@ export default { | ||||
|             host: this.config.host || '', | ||||
|             title: this.config.title || '', | ||||
|             description: this.config.description || '', | ||||
|             keywords: this.config.keywords || '', | ||||
|             robots: this.config.robots || [], | ||||
|             ga: this.config.ga || '', | ||||
|             company: this.config.company || '', | ||||
|   | ||||
| @@ -51,6 +51,8 @@ export default { | ||||
|  | ||||
| <style lang='scss'> | ||||
|   .loader-dialog { | ||||
|     transition: all .4s ease; | ||||
|  | ||||
|     .atom-spinner.is-inline { | ||||
|       display: inline-block; | ||||
|     } | ||||
|   | ||||
| @@ -350,10 +350,10 @@ export default { | ||||
|  | ||||
|     @include keyframes(loginBgReveal) { | ||||
|       0% { | ||||
|         background-position-y: 0; | ||||
|         background-position-x: 0; | ||||
|       } | ||||
|       100% { | ||||
|         background-position-y: -800px; | ||||
|         background-position-x: 800px; | ||||
|       } | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -2,7 +2,6 @@ mutation ( | ||||
|   $host: String! | ||||
|   $title: String! | ||||
|   $description: String! | ||||
|   $keywords: String! | ||||
|   $robots: [String]! | ||||
|   $ga: String! | ||||
|   $company: String! | ||||
| @@ -17,7 +16,6 @@ mutation ( | ||||
|       host: $host, | ||||
|       title: $title, | ||||
|       description: $description, | ||||
|       keywords: $keywords, | ||||
|       robots: $robots, | ||||
|       ga: $ga, | ||||
|       company: $company, | ||||
|   | ||||
| @@ -4,7 +4,6 @@ | ||||
|       host | ||||
|       title | ||||
|       description | ||||
|       keywords | ||||
|       robots | ||||
|       ga | ||||
|       company | ||||
|   | ||||
		Reference in New Issue
	
	Block a user