Skip to content

Commit e0542b8

Browse files
committed
Add navigation
1 parent 030df59 commit e0542b8

File tree

8 files changed

+30
-0
lines changed

8 files changed

+30
-0
lines changed

guide/en/start/creating-project.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,8 @@ Open your browser to the URL `http://localhost/`.
4848
> `DEV_PORT` in the `docker/.env` file.
4949
5050
![Successful Installation of Yii](img/app-installed.png)
51+
52+
53+
> [!NOTE]
54+
> [← What do you need to know?](prerequisites.md) |
55+
> [Running applications →](running-applications.md)

guide/en/start/databases.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ In this guide, we will focus on working with relational databases using Yii DB.
2828
## Using data package
2929

3030
### Pagination
31+
32+
> [!NOTE]
33+
> [← Working with databases](databases.md) |
34+
> [Looking ahead →](looking-ahead.md)

guide/en/start/forms.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,7 @@ This is a task that could take you a lot of time when developing an application,
200200
to make this task easy.
201201

202202
In the next section, you will learn how to work with databases, which are needed in nearly every application.
203+
204+
> [!NOTE]
205+
> [← Saying hello](hello.md) |
206+
> [Working with databases →](databases.md)

guide/en/start/gii.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# Generating code with Gii
22

33

4+
> [!NOTE]
5+
> [← Working with forms](forms.md) |
6+
> [Generating code with Gii →](gii.md)

guide/en/start/hello.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,7 @@ the `message` parameter.
164164
You've also learned about routing in Yii, which acts as the bridge between user requests and handlers.
165165

166166
In the next section, you will learn how to fetch data and add a new page containing an HTML form.
167+
168+
> [!NOTE]
169+
> [← Creating a project](creating-project.md) |
170+
> [Saying hello →](hello.md)

guide/en/start/looking-ahead.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ In the process, you've learned how to implement some commonly necessary features
55
via an HTML form, fetching data from a database, and displaying data in a paginated fashion. You've also learned how
66
to use [Gii](gii.md) to generate code automatically. Using Gii for code generation turns the bulk of your Web development
77
process into a task as simple as just filling out some forms.
8+
9+
> [!NOTE]
10+
> [← Generating code with Gii](gii.md)

guide/en/start/prerequisites.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ The default application template leverages Docker,
3535
so we recommend that you [read and understand the concepts](https://docs.docker.com/get-started/).
3636

3737
Also, you will benefit from familiarizing yourself with [twelve-factor app](https://12factor.net/) principles.
38+
39+
> ![Note]
40+
> [Creating a project →](creating-project.md)

guide/en/start/workflow.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,7 @@ The following diagram shows how an application handles a request.
121121
6. The handler may load some data, possibly from a database.
122122
7. The handler forms a response by using data. Either directly or with the help of the view package.
123123
8. Emitter receives the response and takes care of sending the response to the user's browser.
124+
125+
> [!NOTE]
126+
> [← Running applications](workflow.md) |
127+
> [Working with forms →](forms.md)

0 commit comments

Comments
 (0)