forked from francodacosta/grav-plugin-autoseo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprints.yaml
106 lines (102 loc) · 3.08 KB
/
blueprints.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Auto SEO
version: 1.5.0
description: Grav AutoSEO is a plugin for Grav with which you can fill automatically the description and keywords metadata of a page using its content. It also adds Facebook Open Graph metadata and Twitter Cards Meta Tags.
icon: magic
author:
name: Nuno Costa
email: [email protected]
url: http://www.codehaha.com
homepage: https://github.com/francodacosta/grav-plugin-autoseo
keywords: plugin, seo, metadata extraction, auto fill
bugs: https://github.com/francodacosta/grav-plugin-autoseo/issues
docs: https://github.com/francodacosta/grav-plugin-autoseo/blob/master/README.md
license: MIT
dependencies:
- { name: admin, version: ">=1.5.0" }
form:
validation: strict
fields:
global:
type: section
title: PLUGINS.AUTO_SEO.GLOBAL_CONFIG
underline: 1
fields:
enabled:
type: toggle
label: PLUGINS.AUTO_SEO.PLUGIN_STATUS
highlight: 1
default: 0
options:
1: PLUGIN_ADMIN.ENABLED
0: PLUGIN_ADMIN.DISABLED
validate:
type: bool
metadata:
type: section
title: PLUGINS.AUTO_SEO.DEFAULT_CONFIG
underline: 1
fields:
description.enabled:
type: toggle
label: PLUGINS.AUTO_SEO.DESCRIPTION.ENABLED_LABEL
help: PLUGINS.AUTO_SEO.DESCRIPTION.ENABLED_HELP
highlight: 1
default: 0
options:
1: PLUGIN_ADMIN.ENABLED
0: PLUGIN_ADMIN.DISABLED
validate:
type: bool
description.length:
type: text
size: x-small
label: PLUGINS.AUTO_SEO.DESCRIPTION.LENGTH_LABEL
help: PLUGINS.AUTO_SEO.DESCRIPTION.LENGTH_HELP
default: 30
validate:
type: number
min: 2
max: 50
keywords.enabled:
type: toggle
label: PLUGINS.AUTO_SEO.KEYWORDS.ENABLED_LABEL
help: PLUGINS.AUTO_SEO.KEYWORDS.ENABLED_HELP
highlight: 1
default: 0
options:
1: PLUGIN_ADMIN.ENABLED
0: PLUGIN_ADMIN.DISABLED
validate:
type: bool
keywords.length:
type: text
size: x-small
label: PLUGINS.AUTO_SEO.KEYWORDS.LENGTH_LABEL
help: PLUGINS.AUTO_SEO.KEYWORDS.LENGTH_HELP
default: 20
validate:
type: number
min: 2
max: 30
facebook.enabled:
type: toggle
label: PLUGINS.AUTO_SEO.FACEBOOK.ENABLED_LABEL
help: PLUGINS.AUTO_SEO.FACEBOOK.ENABLED_HELP
highlight: 1
default: 0
options:
1: PLUGIN_ADMIN.ENABLED
0: PLUGIN_ADMIN.DISABLED
validate:
type: bool
twitter.enabled:
type: toggle
label: PLUGINS.AUTO_SEO.TWITTER.ENABLED_LABEL
help: PLUGINS.AUTO_SEO.TWITTER.ENABLED_HELP
highlight: 1
default: 0
options:
1: PLUGIN_ADMIN.ENABLED
0: PLUGIN_ADMIN.DISABLED
validate:
type: bool