added meta_* in front matter
This commit is contained in:
@@ -4,6 +4,8 @@ baseurl: ""
|
||||
shared_baseurl: ""
|
||||
syntax_highlight_theme: "tomorrow-night"
|
||||
cdnurl: "//cdn.tinymce.com/4/tinymce.min.js"
|
||||
default_meta_keywords: tinymce, documentation, docs, plugins, customizable skins, configuration, examples, html, php, java, javascript, image editor
|
||||
|
||||
exclude:
|
||||
- README.md
|
||||
- Gemfile
|
||||
|
||||
@@ -4,15 +4,15 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="{{ page.description }}">
|
||||
<meta name="keywords" content="tinymce, documentation, docs, plugins, customizable skins, configuration, examples, html, php, java, javascript, image editor">
|
||||
<meta name="description" content="{{ page.meta_description | or:page.description }}">
|
||||
<meta name="keywords" content="{{ page.meta_keywords | or:site.default_meta_keywords }}">
|
||||
<meta property="og:og:site_name" content="TinyMCE.com">
|
||||
<meta property="og:title" content="TinyMCE | {{ page.title }}">
|
||||
<meta property="og:title" content="TinyMCE | {{ page.meta_title | or:page.title }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:description" content="{{ page.description }}">
|
||||
<meta property="og:description" content="{{ page.meta_description | or:page.description }}">
|
||||
<meta property="og:image" content="https://www.tinymce.com/images/fb-share@2x.png">
|
||||
|
||||
<title>TinyMCE.com | {{ page.title }}</title>
|
||||
<title>TinyMCE | {{ page.meta_title | or:page.title }}</title>
|
||||
|
||||
<link href="{{ site.shared_baseurl }}/css/common.min.css" rel="stylesheet">
|
||||
<link href="{{ site.shared_baseurl }}/css/docs.min.css" rel="stylesheet">
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
layout: default
|
||||
title: TinyMCE Documentation
|
||||
type: index
|
||||
description: The official documentaiton source for the most advanced editor designed to simplify website creation.
|
||||
meta_title: Documentation
|
||||
meta_description: The official documentation source for the most advanced editor designed to simplify website creation.
|
||||
---
|
||||
|
||||
{% include index.html links=site.data.nav %}
|
||||
|
||||
Reference in New Issue
Block a user