Skip to content
Open

Done #2764

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
21 changes: 21 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const express = require("express");
app.use(express.static('public'));

const app = express();

app.get("/home", (request, response, next) =>
response.sendFile(__dirname + "/views/home.html")
);

app.get("/about", (request, response, next) =>
response.sendFile(__dirname + "/views/about.html")
);

app.get("/works", (request, response, next) =>
response.sendFile(__dirname + "/views/works.html")
);

app.get("/Photo Gallery", (request, response, next) =>
response.sendFile(__dirname + "/views/Photo Gallery.html")
);
app.listen(3000, () => console.log("My first app listening on port 3000! "));
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "lab-express-basic-site",
"version": "1.0.0",
"description": "![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.3"
}
}
4 changes: 4 additions & 0 deletions public/stylessheets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
body {
color: blue;
background-color: bisque;
}
22 changes: 22 additions & 0 deletions views/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>About</title>
<link rel="stylesheet" href="/stylesheets/style.css" />
</head>
<body>
<p>
Primero alcanzó reconocimiento mainstream por crear la popular serie de
manga Dr. Slump, antes de crear Dragon Ball (su obra más famosa) y actuar
como diseñador de personajes para varios videojuegos populares como la
serie Dragon Quest, Chrono Trigger y Blue Dragon. Toriyama es considerado
uno de los autores que cambió la historia del manga, debido a que sus
obras fueron muy populares e influyentes, especialmente Dragon Ball.3​
Autores como el de Naruto y One Piece lo citaron como referente e
inspiración para sus obras.4​5​
</p>

<a href="/works">See works</a>
</body>
</html>
18 changes: 18 additions & 0 deletions views/home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Home</title>
<link rel="stylesheet" href="/stylesheets/style.css" />
</head>
<body>
<h1>Akira Toriyama</h1>
<p>
Akira Toriyama (鳥山 明 Toriyama Akira?, Nagoya, 5 de abril de 1955 - 1 de
marzo de 2024)2​ fue un artista de manga y diseñador de personajes
japonés.
</p>

<a href="/about">See about</a>
</body>
</html>
14 changes: 14 additions & 0 deletions views/photoGallery.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Photo Gallery</title>
<link rel="stylesheet" href="/stylesheets/style.css" />
</head>
<body>
<h1>


<a href="/home">See home</a>
</body>
</html>
25 changes: 25 additions & 0 deletions views/works.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Works</title>
<link rel="stylesheet" href="/stylesheets/style.css" />
</head>
<body>
<h1>Works</h1>
<p>
Tras llamar la atención del que fuera su editor para el resto de su
carrera, Kazuhiko Torishima, con obras como Awawa World y Mysterious Rain
Jack (la cual era una parodia de Star Wars), logró debutar como dibujante
en 1978, con la historia Wonder Island, que fue publicada en la revista
semanal Shonen Jump. A partir de ese momento creó una serie de historias
cortas como Tomato (esbozo de lo que luego sería Dr. Slump) y Today's
Highlight Island. Todas tuvieron una moderada aceptación entre los fanes,
y gracias a ello el autor tuvo la posibilidad de realizar su primera
serie.
</p>

<a href="/PhotoGallery
">Photo Gallery</a>
</body>
</html>