Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -867,6 +867,31 @@ div.desktop-lang-switcher {
}
}

/* page navigation */
.page-navigation {
margin-top: 2rem;
padding: 1rem 0;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.page-navigation a {
color: var(--link);
text-decoration: none;
padding: 0.5rem 1rem;
border: 1px solid var(--border);
border-radius: 4px;
transition: background-color 0.2s ease;
}

.page-navigation a:hover {
background-color: var(--hover-bg);
border-color: var(--hover-border);
}

/* navigation */
#navbar {
line-height: 30px;
Expand Down
2 changes: 1 addition & 1 deletion de/starter/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ $ node app.js

Laden Sie dann [http://localhost:3000/](http://localhost:3000/) in einen Browser, um die Ausgabe zu sehen.

### [Previous: Installing ](/{{ page.lang }}/starter/installing.html)    [Next: Express Generator ](/{{ page.lang }}/starter/generator.html)
Copy link
Member

@ShubhamOulkar ShubhamOulkar Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove changes from this file.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not resolved

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Below code was my changes and now, already reverted my changes to previous state.

Image

or should I entirely remove this L47 line?

### [Previous: Installing ](/{{ page.lang }}/starter/installing.html)    [Next: Express Generator ](/{{ page.lang }}/starter/generator.html)
4 changes: 3 additions & 1 deletion en/starter/basic-routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,6 @@ app.delete('/user', (req, res) => {

For more details about routing, see the [routing guide](/{{ page.lang }}/guide/routing.html).

### [Previous: Express application generator ](/{{ page.lang }}/starter/generator.html)    [Next: Serving static files in Express ](/{{ page.lang }}/starter/static-files.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Previous: Express application generator ](/{{ page.lang }}/starter/generator.html) [Next: Serving static files in Express ](/{{ page.lang }}/starter/static-files.html)
</nav>
4 changes: 3 additions & 1 deletion en/starter/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ These are some additional examples with more extensive integrations.
- [prisma-fullstack](https://github.com/prisma/prisma-examples/tree/latest/pulse/fullstack-simple-chat) - Fullstack app with Express and Next.js using [Prisma](https://www.npmjs.com/package/prisma) as an ORM
- [prisma-rest-api-ts](https://github.com/prisma/prisma-examples/tree/latest/orm/express) - REST API with Express in TypeScript using [Prisma](https://www.npmjs.com/package/prisma) as an ORM

### [Previous: Static Files ](/{{ page.lang }}/starter/static-files.html)&nbsp;&nbsp;&nbsp;&nbsp;[Next: FAQ ](/{{ page.lang }}/starter/faq.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Previous: Static Files ](/{{ page.lang }}/starter/static-files.html) [Next: FAQ ](/{{ page.lang }}/starter/faq.html)
</nav>
4 changes: 3 additions & 1 deletion en/starter/generator.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,6 @@ The generated app has the following directory structure:
The app structure created by the generator is just one of many ways to structure Express apps. Feel free to use this structure or modify it to best suit your needs.
</div>

### [Previous: Hello World ](/{{ page.lang }}/starter/hello-world.html)&nbsp;&nbsp;&nbsp;&nbsp;[Next: Basic routing](/{{ page.lang }}/starter/basic-routing.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Previous: Hello World ](/{{ page.lang }}/starter/hello-world.html) [Next: Basic routing](/{{ page.lang }}/starter/basic-routing.html)
</nav>
4 changes: 3 additions & 1 deletion en/starter/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,6 @@ $ node app.js

Then, load `http://localhost:3000/` in a browser to see the output.

### [Previous: Installing ](/{{ page.lang }}/starter/installing.html)&nbsp;&nbsp;&nbsp;&nbsp;[Next: Express Generator ](/{{ page.lang }}/starter/generator.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Previous: Installing ](/{{ page.lang }}/starter/installing.html) [Next: Express Generator ](/{{ page.lang }}/starter/generator.html)
</nav>
4 changes: 3 additions & 1 deletion en/starter/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,6 @@ $ npm install express --no-save
By default with version npm 5.0+, `npm install` adds the module to the `dependencies` list in the `package.json` file; with earlier versions of npm, you must specify the `--save` option explicitly. Then, afterwards, running `npm install` in the app directory will automatically install modules in the dependencies list.
</div>

### [Next: Hello World ](/{{ page.lang }}/starter/hello-world.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Next: Hello World ](/{{ page.lang }}/starter/hello-world.html)
</nav>
4 changes: 3 additions & 1 deletion en/starter/static-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,6 @@ app.use('/static', express.static(path.join(__dirname, 'public')))

For more details about the `serve-static` function and its options, see [serve-static](/resources/middleware/serve-static.html).

### [Previous: Basic Routing ](/{{ page.lang }}/starter/basic-routing.html)&nbsp;&nbsp;&nbsp;&nbsp;[Next: More examples ](/{{ page.lang }}/starter/examples.html)
<nav aria-label="breadcrumb" class="page-navigation" markdown="1">
[Previous: Basic Routing ](/{{ page.lang }}/starter/basic-routing.html) [Next: More examples ](/{{ page.lang }}/starter/examples.html)
</nav>