-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.html
109 lines (104 loc) · 3.71 KB
/
templates.html
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
99
100
101
102
103
104
105
106
107
108
109
<!--Template Card-->
<template id="template-card">
<article class="card movie">
<img src="" alt="Cartell" class="poster">
<section class="movie-info">
<div>
<h3 class="card-title"></h3>
<p>Data publicació</p>
</div>
<span class="puntuacio green"></span>
</section>
</article>
</template>
<!--Template Header-->
<template id="template-header">
<div class="cabecera">
<!--Logo-->
<a href="index.html"><img class="logo" alt="Frame" src="img/logo.svg"></a>
<!--Menú navegació-->
<nav class="menu">
<ul>
<li><a class="enlace" href="index.html">Home</a></li>
<li><a class="enlace" href="list.html">Llistat</a></li>
<li><a class="enlace" href="see.html">Què veure?</a></li>
</ul>
</nav>
</div>
</template>
<!--Template Footer-->
<template id="template-footer">
<div class="tmdb">
<p>Source:</p>
<a href="https://www.themoviedb.org/documentation/api?language=es"><img src="./img/logo-tmdb.svg"
alt="logo tmbdb"></a>
</div>
<div class="contact">
<p>© FRAME 2022-2023</p>
<p>Front-end by MCarmen Martínez</p>
<div class="social">
<a href="https://www.linkedin.com/in/mcarmen-martinez-cortes/"><img alt="icon-linkedin" src="img/linkedin.svg"></a>
<a href="https://github.com/McMartinezc"><img alt="icon-github" src="./img/git.svg"></a>
</div>
</div>
</template>
<!--Template info -->
<template id="template-info">
<article>
<img src="" alt="cartell" class="poster">
<section>
<div>
<header>
<h2 class="title text-light typescale50"></h2>
<span class="vote green mr20"></span>
</header>
<p class="data"></p>
<p class="overview mtb20"></p>
<p class="genere extra"></p>
<p class="idioma extra"></p>
<p class="companie extra"></p>
<p class="time extra"></p>
<p><a href="" class="plataforma enlace extra" target="_blank"></a></p>
</div>
</section>
</article>
</template>
<!--Template info Llista-->
<template id="template-llista">
<article class="list-item">
<img src="" alt="cartell" class="poster">
<section>
<div>
<header>
<h2 class="title"></h2>
<span class="vote green"></span>
</header>
<p class="data"></p>
<p class="overview"></p>
</div>
</section>
</article>
</template>
<!--Template info modal -->
<template id="template-modal">
<article>
<img src="" alt="cartell" class="poster">
<img src="img/creu-solid.svg" class="btn-tancar" alt="tancar">
<img src="img/plus-solid.svg" class="btn-afegir" alt="afegir">
<section>
<div>
<header>
<h2 class="title text-light typescale50"></h2>
<span class="vote green mr20"></span>
</header>
<p class="data"></p>
<p class="overview mtb20"></p>
<p class="genere extra"></p>
<p class="idioma extra"></p>
<p class="companie extra"></p>
<p class="time extra"></p>
<p><a href="" class="plataforma enlace extra" target="_blank"></a></p>
</div>
</section>
</article>
</template>