-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.txt
98 lines (93 loc) · 2.91 KB
/
index.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{nume}}</title>
<link rel="stylesheet" type="text/css" href="stiluriResetare.css" />
<link rel="stylesheet" type="text/css" href="stiluriHeader.css" />
<link rel="stylesheet" type="text/css" href="stiluriMain.css" />
<link rel="stylesheet" type="text/css" href="stiluriFooter.css" />
</head>
<body>
<div id="container">
<!-- Aici se include elementul header -->
<header>
<div class="logo">
<div>
<a href="#">
<img src="{{logo}}" alt="cofee_logo" class="orange"/>
</a>
</div>
<h1 class="coffeelovers">coffeelovers</h1>
</div>
</header>
<!-- Aici se include elementul main -->
<main>
<div id="categs">
{{categorii}}
</div>
<section class="sectiune">
<div id="nume-cafenea">
{{nume}}
</div>
<div class="img-and-about-us-container">
<div class="left-side">
<img id="imagine" src="{{imagine}}" alt="cafenea"/>
</div>
<div class="right-side">
<h2>About us</h2>
<div class="prezentare">
{{prezentare}}
</div>
</div>
</div>
</section>
<section>
<div id="antet" class="products">{{antet}}</div>
<div id="cardprod" class="cards_container">
{{carduri}}
</div>
</section>
</main>
<!-- Aici se include elementul footer -->
<footer>
<div class="continut-footer">
<div class="motto">
<div>dark coffee.</div>
<div style="padding-left: 3rem;">bright future.</div>
</div>
<div class="mail">
<div class="mail-icons">
<div>[email protected]</div>
<div class="icons">
<a href="{{facebook}}">
<img
src="imagini/facebook_icon.svg"
alt="facebook_icon"
class="icons_color"
/>
</a>
<a href="{{instagram}}">
<img
src="imagini/instagram_icon.svg"
alt="instagram_icon"
class="icons_color"
/>
</a>
</div>
</div>
<div class="footer-info">
<a href="#">privacy policy</a>
<a href="#">terms & conditions</a>
</div>
</div>
</div>
</footer>
</div>
<!-- JavaScript -->
<script>
const idCafenea = {{id}}
</script>
</body>
</html>