blueprints.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. name: Pagination
  2. slug: pagination
  3. type: plugin
  4. version: 1.4.4
  5. description: "**Pagination** is a very useful plugin to help navigate a large collection of pages, such as for a **blog**."
  6. icon: list-ol
  7. author:
  8. name: Team Grav
  9. email: devs@getgrav.org
  10. url: http://getgrav.org
  11. homepage: https://github.com/getgrav/grav-plugin-pagination
  12. keywords: pagination, plugin, pages, navigation
  13. bugs: https://github.com/getgrav/grav-plugin-pagination/issues
  14. license: MIT
  15. dependencies:
  16. - { name: grav, version: '>=1.6.0' }
  17. form:
  18. validation: strict
  19. fields:
  20. enabled:
  21. type: toggle
  22. label: PLUGIN_ADMIN.PLUGIN_STATUS
  23. highlight: 1
  24. default: 0
  25. options:
  26. 1: PLUGIN_ADMIN.ENABLED
  27. 0: PLUGIN_ADMIN.DISABLED
  28. validate:
  29. type: bool
  30. delta:
  31. type: number
  32. size: x-small
  33. label: PLUGIN_PAGINATION.DELTA
  34. default: 0
  35. help: PLUGIN_PAGINATION.DELTA_HELP
  36. validate:
  37. type: number
  38. min: 0
  39. built_in_css:
  40. type: toggle
  41. label: PLUGIN_PAGINATION.BUILTIN_CSS
  42. help: PLUGIN_PAGINATION.BUILTIN_CSS_HELP
  43. highlight: 1
  44. default: 1
  45. options:
  46. 1: PLUGIN_ADMIN.ENABLED
  47. 0: PLUGIN_ADMIN.DISABLED
  48. validate:
  49. type: bool