Skip to content

Commit

Permalink
VP-7133 add MetaKeywords to SEO info blade
Browse files Browse the repository at this point in the history
  • Loading branch information
ksavosteev committed Mar 1, 2021
1 parent 6cfea7b commit 3398516
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
"url-keyword": "URL keyword",
"page-title": "Page title",
"meta-description": "Meta description",
"meta-keywords": "Meta keywords",
"alternative-text": "Image alternative text"
},
"placeholders": {
Expand All @@ -151,6 +152,7 @@
"url-keyword": "Enter keyword",
"page-title": "Enter title",
"meta-description": "Enter description",
"meta-keywords": "Enter keywords",
"alternative-text": "Enter text"
},
"validations": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
<textarea ng-model="blade.currentEntity.metaDescription" class="form-control" cols="30" rows="3" placeholder="{{'core.blades.seo-detail.placeholders.meta-description' | translate}}"></textarea>
</div>
</div>
<div class="form-group">
<label class="form-label">{{'core.blades.seo-detail.labels.meta-keywords' | translate}}</label>
<div class="form-input">
<input ng-model="blade.currentEntity.metaKeywords" class="form-control" ng-maxlength="255" placeholder="{{'core.blades.seo-detail.placeholders.meta-keywords' | translate}}" />
</div>
</div>
<div class="form-group">
<label class="form-label">{{'core.blades.seo-detail.labels.alternative-text' | translate}}</label>
<div class="form-input">
Expand Down

0 comments on commit 3398516

Please sign in to comment.