generated from Ctrl-Alt-Tec/bits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (70 loc) · 3.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>WePlay | Participaciones</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<img src="logo.png" alt="WePlay" srcset="">
<h1>
Puntuaciones
</h1>
<button style="margin-left: auto;" onclick="document.querySelector('alt-bits-carrousel').selectRandomWeighted()"> Random </button>
</nav>
<section id="carrousel-section">
<alt-bits-carrousel
max-size="60vmin"
min-size="8vmin"
max-value="1"
></alt-bits-carrousel>
</section>
<section id="activities-section">
<h1>Actividades</h1>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
<alt-bits-participation participation-date="26/12/2021" participation-category="Redes sociales" participation-description="Seguir nuestras cuentas" participation-score="3"></alt-bits-participation>
</section>
<section id="prizes-section">
<h1>Premios</h1>
<p>
¡Esperalos muy pronto!
</p>
</section>
<section id="about-section">
<h1>Acerca de</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magnam nobis quia eum eius sint molestiae veniam iusto non maxime perferendis illo nisi vero earum eligendi dolor voluptates voluptate, sequi illum.</p>
</section>
<footer>
<p>Made with ❤️ by <a href="https://ctrl-alt-tec.hackclub.com">Ctrl Alt Tec</a></p>
</footer>
<!-- <script src="./alt-bits.js" type="module"></script> -->
<script type="module">
import AltBits from './alt-bits.js'
AltBits({
columnNames: {
member: {
name: member => member['NOMBRE DEL INTEGRANTE'] || 'Unasigned',
id: member => member['MATRÍCULA'],
score: member => member?._participations?.total || 1,
participations: member => member?._participations?.participations
},
participation: {
date: participation => participation['FECHA'],
category: description => 'Puntos por participación',
description: participation => participation['CONCEPTO'],
score: participation => participation['PUNTUACIÓN']
}
},
baseURL: 'https://ctrl-alt-tec-api.herokuapp.com/api/participation?org=weplay'
})
</script>
</body>
</html>