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
5 changes: 5 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ app.get('/', async function (request, response) {
response.render('index.liquid')
})


app.get('/akiko', async function (request, response) {
response.render('akiko.liquid')
})

// Stel het poortnummer in waar Express op moet gaan luisteren
// Lokaal is dit poort 8000; als deze applicatie ergens gehost wordt, waarschijnlijk poort 80
app.set('port', process.env.PORT || 8000)
Expand Down
1 change: 1 addition & 0 deletions views/akiko.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Test </h1>
4 changes: 3 additions & 1 deletion views/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
<html lang="nl">
<title>Sprint 11</title>
<h1>Welkom in Sprint 11!</h1>
<p>Succes!</p>
<p>Succes!</p>
<p>test</p>
<p>hoii</p>