From 5ca3d3b26676ae0f041ae2db74c80d466479fc6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Bru=CC=88ckner?= Date: Thu, 18 Jun 2020 22:03:58 +0200 Subject: [PATCH 1/2] Adds page and configuration for installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Frank Brückner --- docs/book/installation.md | 5 +++++ mkdocs.yml | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 docs/book/installation.md diff --git a/docs/book/installation.md b/docs/book/installation.md new file mode 100644 index 00000000..65d335af --- /dev/null +++ b/docs/book/installation.md @@ -0,0 +1,5 @@ +**This is only a placeholder.** + +The content of this page can be found under: + +https://github.com/laminas/documentation-theme/blob/master/theme/pages/installation.html \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 4b1566b3..3be520ef 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,6 +3,7 @@ site_dir: docs/html nav: - Home: index.md - Introduction: intro.md + - Installation: installation.md - Usage: usage.md - Reference: - Configuration: configuration.md @@ -12,3 +13,6 @@ site_description: 'Paginate collections of data from arbitrary sources.' repo_url: 'https://github.com/laminas/laminas-paginator' extra: project: Components + installation: + config_provider_class: 'Laminas\Paginator\ConfigProvider' + module_class: 'Laminas\Paginator\Module' From acd28e7513eae319400e0cb80b97c768f69c72d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Bru=CC=88ckner?= Date: Thu, 18 Jun 2020 22:06:28 +0200 Subject: [PATCH 2/2] Updates site description in MkDocs config for consistency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Frank Brückner --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 3be520ef..f44c07bc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,7 +9,7 @@ nav: - Configuration: configuration.md - "Advanced Usage": advanced.md site_name: laminas-paginator -site_description: 'Paginate collections of data from arbitrary sources.' +site_description: 'Paginate collections of data from arbitrary sources' repo_url: 'https://github.com/laminas/laminas-paginator' extra: project: Components