Skip to content

Commit 8137bd4

Browse files
committed
Add files via upload
Signed-off-by: Grouvex <168425996+Grouvex@users.noreply.github.com>
1 parent 0883627 commit 8137bd4

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

es/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="Texto">
1313
<footer>
1414
<div>
15-
<p><a href="terminos">Terminos</a> <a href="privacidad">Privacidad</a> Contacto: <a href="mailto:%2520grouvex@gmail.com">grouvex@gmail.com</a></p><p>©2023-<span id ="año"></span> Grouvex & Grouvex Studio</p>
15+
<p><a href="terminos.html">Terminos</a> <a href="privacidad.html">Privacidad</a> Contacto: <a href="mailto:%2520grouvex@gmail.com">grouvex@gmail.com</a></p><p>©2023-<span id ="año"></span> Grouvex & Grouvex Studio</p>
1616
<script>
1717
document.getElementById("año").innerHTML = new Date().getFullYear();
1818
</script>

es/ig.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ <h1>Instagram Grouvex</h1>
5757
</section>
5858
</article>
5959
</div>
60-
<button class="accordion"><h3>Publicaciones de Grouvex</h3></button>
61-
<div class="panel">
60+
<h3>Publicaciones de Grouvex</h3>
61+
6262
<div id="videoCarousel">
6363
<!-- Aquí se añadirán los videos -->
6464
</div>
@@ -67,8 +67,6 @@ <h1>Instagram Grouvex</h1>
6767
<div id="modalContent">
6868
<!-- Aquí se mostrará el video en el modal -->
6969
</div>
70-
</div>
71-
</div>
7270
</article>
7371
</main>
7472
<div id="footer"></div>

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function nieve() {
9595
var day = today.getDate();
9696

9797
// Comprueba si es Navidad (24 de diciembre - 5 de enero)
98-
if ((month >= 4 && day >= 24) || (month == 0 && day <= 5)) {
98+
if ((month >= 11 && day >= 24) || (month == 0 && day <= 5)) {
9999
for (var i = 0; i < 250; i++) {
100100
var snowflake = document.createElement('div');
101101
snowflake.className = 'snowflake';

temas.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,35 @@ function checkThemes() {
88
const month = date.getMonth();
99

1010
// Superhéroes
11-
if (month === 0) {
11+
if (month == 0) {
1212
toggleThemeOption('superheroes', false);
1313
} else {
1414
toggleThemeOption('superheroes', true);
1515
}
1616

1717
// Naturaleza 1
18-
if (month === 1) {
18+
if (month == 1) {
1919
toggleThemeOption('naturaleza1', false);
2020
} else {
2121
toggleThemeOption('naturaleza1', true);
2222
}
2323

2424
// Naturaleza 2
25-
if (month === 2) {
25+
if (month == 2) {
2626
toggleThemeOption('naturaleza2', false);
2727
} else {
2828
toggleThemeOption('naturaleza2', true);
2929
}
3030

3131
// Naturaleza 3
32-
if (month === 3) {
32+
if (month == 3) {
3333
toggleThemeOption('naturaleza3', false);
3434
} else {
3535
toggleThemeOption('naturaleza3', true);
3636
}
3737

3838
// Naturaleza 4
39-
if (month === 4) {
39+
if (month == 4) {
4040
toggleThemeOption('naturaleza4', false);
4141
} else {
4242
toggleThemeOption('naturaleza4', true);

0 commit comments

Comments
 (0)