From a418a0b7ca9ed3376a3ee1acbfad52e05a01722e Mon Sep 17 00:00:00 2001 From: honurbu Date: Thu, 15 Feb 2024 10:50:40 +0300 Subject: [PATCH] Previous and next steps added --- docs/en/Getting-Started-Create-Solution.md | 13 +++++++++++++ ...tting-Started-Running-Solution-Single-Layer.md | 10 ++++++++++ docs/en/Getting-Started-Running-Solution.md | 10 ++++++++++ ...ting-Started-Setup-Environment-Single-Layer.md | 10 ++++++++++ docs/en/Getting-Started-Setup-Environment.md | 9 +++++++++ docs/en/Tutorials/Part-1.md | 10 ++++++++++ docs/en/Tutorials/Part-2.md | 14 ++++++++++++++ docs/en/Tutorials/Part-3.md | 15 +++++++++++++++ docs/en/Tutorials/Part-4.md | 15 +++++++++++++++ 9 files changed, 106 insertions(+) diff --git a/docs/en/Getting-Started-Create-Solution.md b/docs/en/Getting-Started-Create-Solution.md index 45689b45fc..a395f36b6f 100644 --- a/docs/en/Getting-Started-Create-Solution.md +++ b/docs/en/Getting-Started-Create-Solution.md @@ -8,6 +8,19 @@ "Tiered": ["Yes", "No"] } ```` +````json +//[doc-nav] +{ + "Next": { + "Name": "Running the solution", + "Path": "Getting-Started-Running-Solution" + }, + "Previous": { + "Name": "Setup Your Development Environment", + "Path": "Getting-Started-Setup-Environment" + } +} +```` > This document assumes that you prefer to use **{{ UI_Value }}** as the UI framework and **{{ DB_Value }}** as the database provider. For other options, please change the preference on top of this document. diff --git a/docs/en/Getting-Started-Running-Solution-Single-Layer.md b/docs/en/Getting-Started-Running-Solution-Single-Layer.md index 58783b8c3b..18b2316cf6 100644 --- a/docs/en/Getting-Started-Running-Solution-Single-Layer.md +++ b/docs/en/Getting-Started-Running-Solution-Single-Layer.md @@ -8,6 +8,16 @@ } ```` +````json +//[doc-nav] +{ + "Previous": { + "Name": "Creating a new solution", + "Path": "Getting-Started-Create-Solution-Single-Layer" + } +} +```` + > This document assumes that you prefer to use **{{ UI_Value }}** as the UI framework and **{{ DB_Value }}** as the database provider. For other options, please change the preference on top of this document. ## Create the Database diff --git a/docs/en/Getting-Started-Running-Solution.md b/docs/en/Getting-Started-Running-Solution.md index d71c0a64da..a00c48963a 100644 --- a/docs/en/Getting-Started-Running-Solution.md +++ b/docs/en/Getting-Started-Running-Solution.md @@ -9,6 +9,16 @@ } ```` +````json +//[doc-nav] +{ + "Previous": { + "Name": "Creating a new solution", + "Path": "Getting-Started-Create-Solution" + } +} +```` + > This document assumes that you prefer to use **{{ UI_Value }}** as the UI framework and **{{ DB_Value }}** as the database provider. For other options, please change the preference on top of this document. ## Create the Database diff --git a/docs/en/Getting-Started-Setup-Environment-Single-Layer.md b/docs/en/Getting-Started-Setup-Environment-Single-Layer.md index c9a308a850..ad7beff5d7 100644 --- a/docs/en/Getting-Started-Setup-Environment-Single-Layer.md +++ b/docs/en/Getting-Started-Setup-Environment-Single-Layer.md @@ -8,6 +8,16 @@ } ```` +````json +//[doc-nav] +{ + "Next": { + "Name": "Creating a new solution", + "Path": "Getting-Started-Create-Solution-Single-Layer" + } +} +```` + > This document assumes that you prefer to use **{{ UI_Value }}** as the UI framework and **{{ DB_Value }}** as the database provider. For other options, please change the preference on top of this document. ## Setup Your Development Environment diff --git a/docs/en/Getting-Started-Setup-Environment.md b/docs/en/Getting-Started-Setup-Environment.md index 12f7cd5890..62238f6036 100644 --- a/docs/en/Getting-Started-Setup-Environment.md +++ b/docs/en/Getting-Started-Setup-Environment.md @@ -8,6 +8,15 @@ "Tiered": ["Yes", "No"] } ```` +````json +//[doc-nav] +{ + "Next": { + "Name": "Creating a new solution", + "Path": "Getting-Started-Create-Solution" + } +} +```` > This document assumes that you prefer to use **{{ UI_Value }}** as the UI framework and **{{ DB_Value }}** as the database provider. For other options, please change the preference on top of this document. diff --git a/docs/en/Tutorials/Part-1.md b/docs/en/Tutorials/Part-1.md index e5a8750f39..efcab3172d 100644 --- a/docs/en/Tutorials/Part-1.md +++ b/docs/en/Tutorials/Part-1.md @@ -6,6 +6,16 @@ "DB": ["EF","Mongo"] } ```` +````json +//[doc-nav] +{ + "Next": { + "Name": "# Web Application Development Tutorial - Part 2: The Book List Page", + "Path": "Part-2" + } +} +```` + ## About This Tutorial In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies: diff --git a/docs/en/Tutorials/Part-2.md b/docs/en/Tutorials/Part-2.md index d22e4b5062..aca877d9c0 100644 --- a/docs/en/Tutorials/Part-2.md +++ b/docs/en/Tutorials/Part-2.md @@ -6,6 +6,20 @@ "DB": ["EF","Mongo"] } ```` +````json +//[doc-nav] +{ + "Next": { + "Name": "# Web Application Development Tutorial - Part 3: Creating, Updating and Deleting Books", + "Path": "Part-3" + }, + "Previous": { + "Name": "# Web Application Development Tutorial - Part 1: Creating the Server Side", + "Path": "Part-1" + } +} +```` + ## About This Tutorial In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies: diff --git a/docs/en/Tutorials/Part-3.md b/docs/en/Tutorials/Part-3.md index bb00d71651..39deeb7789 100644 --- a/docs/en/Tutorials/Part-3.md +++ b/docs/en/Tutorials/Part-3.md @@ -6,6 +6,21 @@ "DB": ["EF","Mongo"] } ```` + +````json +//[doc-nav] +{ + "Next": { + "Name": "# Web Application Development Tutorial - Part 4: Integration Tests", + "Path": "Part-4" + }, + "Previous": { + "Name": "# Web Application Development Tutorial - Part 2: The Book List Page", + "Path": "Part-2" + } +} +```` + ## About This Tutorial In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies: diff --git a/docs/en/Tutorials/Part-4.md b/docs/en/Tutorials/Part-4.md index 87bc512b5e..fdb76a6079 100644 --- a/docs/en/Tutorials/Part-4.md +++ b/docs/en/Tutorials/Part-4.md @@ -6,6 +6,21 @@ "DB": ["EF","Mongo"] } ```` + +````json +//[doc-nav] +{ + "Next": { + "Name": "# Web Application Development Tutorial - Part 5: Authorization", + "Path": "Part-5" + }, + "Previous": { + "Name": "# Web Application Development Tutorial - Part 3: Creating, Updating and Deleting Books", + "Path": "Part-3" + } +} +```` + ## About This Tutorial In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies: