No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

blueprints.yaml 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. name: SimpleSearch
  2. version: 1.13.0
  3. description: "Don't be fooled, the **SimpleSearch** plugin provides a **fast** and highly **configurable** way to search your content."
  4. icon: search
  5. author:
  6. name: Team Grav
  7. email: devs@getgrav.org
  8. url: http://getgrav.org
  9. homepage: https://github.com/getgrav/grav-plugin-simplesearch
  10. demo: http://demo.getgrav.org/blog-skeleton
  11. keywords: simplesearch, plugin, search, page, content, find
  12. bugs: https://github.com/getgrav/grav-plugin-simplesearch/issues
  13. license: MIT
  14. form:
  15. validation: strict
  16. fields:
  17. enabled:
  18. type: toggle
  19. label: PLUGIN_ADMIN.PLUGIN_STATUS
  20. highlight: 1
  21. default: 0
  22. options:
  23. 1: PLUGIN_ADMIN.ENABLED
  24. 0: PLUGIN_ADMIN.DISABLED
  25. validate:
  26. type: bool
  27. search_content:
  28. type: select
  29. size: medium
  30. classes: fancy
  31. label: Search Content
  32. default: rendered
  33. options:
  34. rendered: Rendered Content (Slower)
  35. raw: Raw Markdown Content (Faster)
  36. built_in_css:
  37. type: toggle
  38. label: Use built in CSS
  39. highlight: 1
  40. default: 1
  41. options:
  42. 1: PLUGIN_ADMIN.ENABLED
  43. 0: PLUGIN_ADMIN.DISABLED
  44. validate:
  45. type: bool
  46. display_button:
  47. type: toggle
  48. label: Display Search Button
  49. highlight: 0
  50. default: 0
  51. options:
  52. 1: Enabled
  53. 0: Disabled
  54. validate:
  55. type: bool
  56. ignore_accented_characters:
  57. type: toggle
  58. label: Ignore accented characters
  59. help: If enabled, search terms will match accented characters regardless to their diacritics i.e. search results will show up for "cafe" and "café" no matter how you typed it.
  60. highlight: 0
  61. default: 0
  62. options:
  63. 1: Enabled
  64. 0: Disabled
  65. validate:
  66. type: bool
  67. min_query_length:
  68. type: text
  69. size: x-small
  70. label: Minimum query length
  71. help: The mimimum number of characters needed before serach can be submitted
  72. validate:
  73. type: number
  74. min: 0
  75. route:
  76. type: text
  77. size: medium
  78. label: Route
  79. default: /random
  80. help: Default route of the simplesearch plugin
  81. template:
  82. type: text
  83. size: medium
  84. label: Template
  85. default: simplesearch_results
  86. help: Name of the template for the search results
  87. filters.category:
  88. type: selectize
  89. label: Category filter
  90. help: Comma separated list of category names. Enter "@none" to search in all pages.
  91. validate:
  92. type: commalist
  93. filter_combinator:
  94. type: select
  95. size: medium
  96. classes: fancy
  97. label: Filter Combinator
  98. default: and
  99. options:
  100. and: And - Boolean &&
  101. or: Or - Boolean ||
  102. order.by:
  103. type: select
  104. size: long
  105. classes: fancy
  106. label: PLUGIN_ADMIN.DEFAULT_ORDERING
  107. help: PLUGIN_ADMIN.DEFAULT_ORDERING_HELP
  108. options:
  109. default: PLUGIN_ADMIN.DEFAULT_ORDERING_DEFAULT
  110. folder: PLUGIN_ADMIN.DEFAULT_ORDERING_FOLDER
  111. title: PLUGIN_ADMIN.DEFAULT_ORDERING_TITLE
  112. date: PLUGIN_ADMIN.DEFAULT_ORDERING_DATE
  113. order.dir:
  114. type: toggle
  115. label: PLUGIN_ADMIN.DEFAULT_ORDER_DIRECTION
  116. highlight: asc
  117. default: desc
  118. help: PLUGIN_ADMIN.DEFAULT_ORDER_DIRECTION_HELP
  119. options:
  120. asc: PLUGIN_ADMIN.ASCENDING
  121. desc: PLUGIN_ADMIN.DESCENDING