-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathindex.template.html
108 lines (105 loc) · 3.6 KB
/
index.template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="favicon.ico" />
<!-- Preconnect and prefetch -->
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
<link rel="dns-prefetch" href="https://fonts.gstatic.com/" />
<link rel="preconnect" href="https://kitsu.io/" crossorigin />
<link rel="dns-prefetch" href="https://kitsu.io/" />
<link rel="prefetch" as="image" href="/assets/logo-platzi-video.png" />
<!-- Styles -->
<link rel="stylesheet" href="/styles.css" />
<link
media="screen and (min-width: 600px)"
rel="stylesheet"
href="/desktop.css"
/>
<!-- Title -->
<title>PlatziVideo</title>
</head>
<body>
<header class="header">
<div class="header__logo">
<img
src="/assets/logo-platzi-video.png"
alt="Logo Platzi Video"
width="200px"
height="61px"
/>
</div>
<div class="header__menu">
<div class="header__menu--profile">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
<defs />
<circle
cx="25"
cy="25"
fill="none"
r="24"
stroke="#fff"
stroke-linecap="round"
stroke-miterlimit="10"
stroke-width="2"
/>
<path fill="none" d="M0 0h50v50H0z" />
<path
fill="#fff"
d="M29.933 35.528c-.146-1.612-.09-2.737-.09-4.21.73-.383 2.038-2.825 2.259-4.888.574-.047 1.479-.607 1.744-2.818.143-1.187-.425-1.855-.771-2.065.934-2.809 2.874-11.499-3.588-12.397-.665-1.168-2.368-1.759-4.581-1.759-8.854.163-9.922 6.686-7.981 14.156-.345.21-.913.878-.771 2.065.266 2.211 1.17 2.771 1.744 2.818.22 2.062 1.58 4.505 2.312 4.888 0 1.473.055 2.598-.091 4.21-1.261 3.39-7.737 3.655-11.473 6.924 3.906 3.933 10.236 6.746 16.916 6.746s14.532-5.274 15.839-6.713c-3.713-3.299-10.204-3.555-11.468-6.957z"
/>
</svg>
<p>Perfil</p>
</div>
<ul>
<li><a href="/">Cuenta</a></li>
</ul>
</div>
</header>
<section class="main">
<h2 class="main__title">¿Qué quieres ver hoy?</h2>
<input type="text" class="search-input" placeholder="Buscar..." />
<div id="ssr-placeholder"></div>
</section>
<footer>
<p>
Projecto del curso de
<a href="https://platzi.com/cursos/web-performance/" target="_blank"
>Optimización Web de Platzi</a
>
dictado con el
<i title="Corazón, como sentimiento, en Japonés">kokoro</i> por
<a
href="http://twitter.com/jonalvarezz"
target="_blank"
title="Twitter del profesor Jonathan Alvarez"
>@jonalvarezz</a
>
</p>
<p>
Los datos e imágenes de Anime provienen de
<a href="https://kitsu.io" target="_blank">Kitsu</a>
</p>
</footer>
<!-- Scripts -->
<script async src="dist/main.bundle.js"></script>
<!-- Fonts -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Muli'],
},
})
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js')
})
}
</script>
</body>
</html>