Skip to content

Commit 540855e

Browse files
authored
Merge branch 'main' into product-pagina
2 parents 0d2a213 + 6abc4ab commit 540855e

File tree

6 files changed

+52
-3
lines changed

6 files changed

+52
-3
lines changed

.DS_Store

8 KB
Binary file not shown.

public/.DS_Store

6 KB
Binary file not shown.

public/style.css

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11

2-
/* r20222 */
3-
*{
2+
3+
.nav{
4+
color: red;
5+
}
6+
header{
7+
color: blue;
8+
}
9+
10+
* {
11+
412
margin: 0;
513
padding: 0;
614
}

views/index.ejs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
<h1>hoi!</h1>
1+
<%- include('./partials/head.ejs') %>
2+
3+
4+
5+
<h1>hiiii</h1>
6+
<%- include('./partials/foot.ejs') %>

views/partials/foot.ejs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h2>haoii</h2>

views/partials/head.ejs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="nl">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Vini Mini</title>
8+
<link rel="stylesheet" href="/style.css">
9+
<link href='http://fonts.googleapis.com/css?family=Montserrat:regular' rel='stylesheet' type='text/css'>
10+
</head>
11+
<body>
12+
<header>
13+
<p>GEEN VERZENDKOSTEN bij aankoop van mijn eerste pinda in 3 of 6 stappen + mijn eerste pinda Opvolgkit</p>
14+
</header>
15+
<!--Nav-->
16+
<nav>
17+
<img src="/logo.png" loading="lazy" alt="logo" width="300" height="300">
18+
<div class="nav-menu">
19+
<div class="nav-links">
20+
<ul>
21+
<li> <a href="">Voor Mini </a></li>
22+
<li> <a href="">Producten </a></li>
23+
<li> <a href="">Reviews</a></li>
24+
<li> <a href="">Nieuws </a></li>
25+
<li> <a href="">Contact </a></li>
26+
</ul>
27+
</div>
28+
</div>
29+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
30+
<div class="navbar">
31+
<a href="#"><i class="fa fa-fw fa-user"></i></a>
32+
<a href="#"><i class="fa fa-shopping-cart"></i></a>
33+
</div>
34+
</nav>
35+
<main>

0 commit comments

Comments
 (0)