├── .gitignore ├── LICENSE ├── README.md ├── layouts ├── _default │ └── index.json.json └── partials │ └── json │ └── createindex.json └── theme.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformsh/hugo-meilisearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformsh/hugo-meilisearch/HEAD/README.md -------------------------------------------------------------------------------- /layouts/_default/index.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformsh/hugo-meilisearch/HEAD/layouts/_default/index.json.json -------------------------------------------------------------------------------- /layouts/partials/json/createindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformsh/hugo-meilisearch/HEAD/layouts/partials/json/createindex.json -------------------------------------------------------------------------------- /theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformsh/hugo-meilisearch/HEAD/theme.yaml --------------------------------------------------------------------------------