From 294590d3ca95e6bcaa0334316125dcf165fbecf4 Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Fri, 21 Dec 2018 13:43:02 +0100 Subject: [PATCH] Add seo tag plugin --- docs/_config.yml | 10 ++++++++++ docs/_layouts/default.html | 2 ++ docs/_posts/2018-12-20-camera-events.md | 1 + docs/_posts/2018-12-20-capture-size.md | 1 + docs/_posts/2018-12-20-capturing-media.md | 1 + docs/_posts/2018-12-20-controls.md | 1 + docs/_posts/2018-12-20-frame-processing.md | 1 + docs/_posts/2018-12-20-gestures.md | 1 + docs/_posts/2018-12-20-getting-started.md | 1 + docs/_posts/2018-12-20-install.md | 1 + docs/_posts/2018-12-20-more-features.md | 1 + docs/_posts/2018-12-20-preview-size.md | 1 + docs/_posts/2018-12-20-previews.md | 1 + docs/_posts/2018-12-20-runtime-permissions.md | 1 + docs/_posts/2018-12-20-v1-migration-guide.md | 1 + 15 files changed, 25 insertions(+) diff --git a/docs/_config.yml b/docs/_config.yml index 23ab7155..8dbe6a6f 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -4,13 +4,23 @@ # Ref guide: https://visualstudiomagazine.com/Articles/2015/03/01/GitHub-Pages.aspx?Page=2 title: CameraView v2 + +# subtitle is used by ourselves, description is used by seo tag. subtitle: A well documented, high-level Android interface that makes capturing pictures and videos easy, addressing all of the common issues and needs. +description: A well documented, high-level Android interface that makes capturing pictures and videos easy, addressing all of the common issues and needs. + +# Can't remember what this does. github: [metadata] + +# Should be used by some plugins but we're not using any, author: name: Mattia Iavarone email: mat.iavarone@gmail.com github: natario1 +# Add head tags. +plugins: + - jekyll-seo-tag # if you wish to integrate disqus on pages set your shortname here disqus_shortname: 'cameraview' diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index c3a753ae..79828c30 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -11,6 +11,8 @@ + + {% seo %} diff --git a/docs/_posts/2018-12-20-camera-events.md b/docs/_posts/2018-12-20-camera-events.md index 1ade62eb..c8a927a9 100644 --- a/docs/_posts/2018-12-20-camera-events.md +++ b/docs/_posts/2018-12-20-camera-events.md @@ -2,6 +2,7 @@ layout: page title: "Camera Events" subtitle: "Events and lifecycle" +description: "Events and lifecycle" category: docs date: 2018-12-20 20:02:08 order: 1 diff --git a/docs/_posts/2018-12-20-capture-size.md b/docs/_posts/2018-12-20-capture-size.md index 78435275..5e34b529 100644 --- a/docs/_posts/2018-12-20-capture-size.md +++ b/docs/_posts/2018-12-20-capture-size.md @@ -2,6 +2,7 @@ layout: page title: "Capture Size" subtitle: "Set size of output media" +description: "Set size of output media" category: docs order: 8 date: 2018-12-20 22:07:22 diff --git a/docs/_posts/2018-12-20-capturing-media.md b/docs/_posts/2018-12-20-capturing-media.md index 792c8812..1538f7ae 100644 --- a/docs/_posts/2018-12-20-capturing-media.md +++ b/docs/_posts/2018-12-20-capturing-media.md @@ -2,6 +2,7 @@ layout: page title: "Capturing Media" subtitle: "Taking pictures and videos" +description: "Taking pictures and videos" category: docs order: 3 date: 2018-12-20 20:53:17 diff --git a/docs/_posts/2018-12-20-controls.md b/docs/_posts/2018-12-20-controls.md index 6ec8ebfa..12166065 100644 --- a/docs/_posts/2018-12-20-controls.md +++ b/docs/_posts/2018-12-20-controls.md @@ -2,6 +2,7 @@ layout: page title: "Controls" subtitle: "Output parameters and capture options" +description: "Output parameters and capture options" category: docs order: 2 date: 2018-12-20 21:08:53 diff --git a/docs/_posts/2018-12-20-frame-processing.md b/docs/_posts/2018-12-20-frame-processing.md index 87cc12fb..08a7d02d 100644 --- a/docs/_posts/2018-12-20-frame-processing.md +++ b/docs/_posts/2018-12-20-frame-processing.md @@ -2,6 +2,7 @@ layout: page title: "Frame Processing" subtitle: "Process each frame in real time" +description: "Process each frame in real time" category: docs order: 5 date: 2018-12-20 20:45:42 diff --git a/docs/_posts/2018-12-20-gestures.md b/docs/_posts/2018-12-20-gestures.md index 4e0009e0..4710f299 100644 --- a/docs/_posts/2018-12-20-gestures.md +++ b/docs/_posts/2018-12-20-gestures.md @@ -2,6 +2,7 @@ layout: page title: "Gestures" subtitle: "Gestures control" +description: "Gestures control" category: docs order: 4 date: 2018-12-20 20:49:35 diff --git a/docs/_posts/2018-12-20-getting-started.md b/docs/_posts/2018-12-20-getting-started.md index 39f4cb9c..fe014401 100644 --- a/docs/_posts/2018-12-20-getting-started.md +++ b/docs/_posts/2018-12-20-getting-started.md @@ -2,6 +2,7 @@ layout: page title: "Getting Started" subtitle: "Simple guide to take your first picture" +description: "Simple guide to take your first picture" category: about date: 2018-12-20 17:48:58 order: 2 diff --git a/docs/_posts/2018-12-20-install.md b/docs/_posts/2018-12-20-install.md index f8ac56e0..cac23bf4 100644 --- a/docs/_posts/2018-12-20-install.md +++ b/docs/_posts/2018-12-20-install.md @@ -2,6 +2,7 @@ layout: page title: "Install" subtitle: "Integrate in your project" +description: "Integrate in your project" category: about order: 1 date: 2018-12-20 17:47:32 diff --git a/docs/_posts/2018-12-20-more-features.md b/docs/_posts/2018-12-20-more-features.md index 45c9419d..984dd940 100644 --- a/docs/_posts/2018-12-20-more-features.md +++ b/docs/_posts/2018-12-20-more-features.md @@ -2,6 +2,7 @@ layout: page title: "More features" subtitle: "Undocumented features & more" +description: "Undocumented features & more" category: docs order: 11 date: 2018-12-20 20:41:20 diff --git a/docs/_posts/2018-12-20-preview-size.md b/docs/_posts/2018-12-20-preview-size.md index 3df5e0f7..a81fdce9 100644 --- a/docs/_posts/2018-12-20-preview-size.md +++ b/docs/_posts/2018-12-20-preview-size.md @@ -2,6 +2,7 @@ layout: page title: "Preview Size" subtitle: "Measuring behavior" +description: "Measuring behavior" category: docs order: 7 date: 2018-12-20 22:07:17 diff --git a/docs/_posts/2018-12-20-previews.md b/docs/_posts/2018-12-20-previews.md index 9dffbeee..3df4ba44 100644 --- a/docs/_posts/2018-12-20-previews.md +++ b/docs/_posts/2018-12-20-previews.md @@ -2,6 +2,7 @@ layout: page title: "Previews" subtitle: "Camera preview implementations" +description: "Camera preview implementations" category: docs order: 6 date: 2018-12-20 21:58:16 diff --git a/docs/_posts/2018-12-20-runtime-permissions.md b/docs/_posts/2018-12-20-runtime-permissions.md index 1dd8739f..0c978a8b 100644 --- a/docs/_posts/2018-12-20-runtime-permissions.md +++ b/docs/_posts/2018-12-20-runtime-permissions.md @@ -2,6 +2,7 @@ layout: page title: "Runtime Permissions" subtitle: "Permissions and Manifest setup" +description: "Permissions and Manifest setup" category: docs order: 8 date: 2018-12-20 20:03:03 diff --git a/docs/_posts/2018-12-20-v1-migration-guide.md b/docs/_posts/2018-12-20-v1-migration-guide.md index bdcf52fe..a69792d8 100644 --- a/docs/_posts/2018-12-20-v1-migration-guide.md +++ b/docs/_posts/2018-12-20-v1-migration-guide.md @@ -2,6 +2,7 @@ layout: page title: "v1 Migration Guide" subtitle: "Breaking Changes & new concepts" +description: "Breaking Changes & new concepts" category: extra date: 2018-12-20 19:01:55 order: 1