-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
281 lines (241 loc) · 10.7 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linux One Clic</title>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:[email protected]&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="web/favicon.ico">
<link rel="stylesheet" href="web/estilo.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/8.4.5/swiper-bundle.min.css">
<meta name="description" content="Install Linux One Clic">
<meta property="og:image" content="https://www.abc.com.py/resizer/v2/LCCGFGFRFJHWNDW3IL3XTDQANU.jpg?auth=e08f02edf642f68d39ccff01365052ef1ca51a53768488f3dacd0739fbad617f&width=1200&smart=true">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
</head>
<body>
<div class="loading-screen" id="loading-screen">
<p>⌛Cargando⏳</p>
</div>
<div class="content" id="content">
<p>⌛Cargando⏳</p>
</div>
<div id="disqus-container"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/8.4.5/swiper-bundle.min.js"></script>
<script>
function hideLoadingScreen() {
const loadingScreen = document.getElementById('loading-screen');
if (loadingScreen) {
loadingScreen.classList.add('hide');
}
}
async function fetchRSS(rssContainer) {
const rssUrl = rssContainer.getAttribute('data-rss-url');
if (!rssUrl) {
console.error("No hay data-rss-url");
return '<p>Error: No RSS</p>';
}
try {
const response = await fetch(`https://api.rss2json.com/v1/api.json?rss_url=${encodeURIComponent(rssUrl)}`);
const data = await response.json();
const feed = data.items.slice(0, 3).map(item => `
<div class="rss-item">
<h3><a href="${item.link}" target="_blank">${item.title}</a></h3>
<p>${item.description}</p>
</div>
`).join("");
return feed;
} catch (error) {
console.error("Error RSS:", error);
return '<p>Error RSS</p>';
}
}
async function loadContent(url, updateHistory = true) {
try {
const response = await fetch(url);
if (!response.ok) throw new Error(`Error fetching ${url}: ${response.statusText}`);
let content = await response.text();
// solo html no disc
const contentDiv = document.getElementById('content');
contentDiv.innerHTML = content;
// Buscar contenedor RSS
const rssContainer = contentDiv.querySelector('#rss-container');
if (rssContainer) {
// Carga RSS por html
const rssFeed = await fetchRSS(rssContainer);
rssContainer.innerHTML = `
<div class="rss-section">
<h2>Novedades:</h2>
${rssFeed}
</div>
`;
}
initializeGalleries();
if (updateHistory) {
history.pushState({ url: url }, '', window.location.href);
}
} catch (error) {
console.error(`Error cargando contenido: ${error.message}`);
document.getElementById('content').innerHTML = `<p>Error Cargando: ${error.message}</p>`;
}
}
function loadDisqus() {
if (document.getElementById('disqus_thread')) {
console.log("Disqus ya cargado");
return;
}
const disqusDiv = document.createElement('div');
disqusDiv.id = 'disqus_thread';
document.getElementById('disqus-container').appendChild(disqusDiv);
window.disqus_config = function () {
this.page.url = 'https://LinuxOneClic/comentarios';
this.page.identifier = 'comentarios'; // 'comentarios_' + currentPageId;
};
const s = document.createElement('script');
s.src = 'https://amigos-steam.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
document.body.appendChild(s);
}
async function loadGalleryData() {
try {
const basePath = window.location.pathname.includes('/SPlol') ? '/SPlol' : '';
const response = await fetch(`${basePath}/data.json`);
const data = await response.json();
return data.galleries;
} catch (error) {
console.error('Error loading gallery data:', error);
return null;
}
}
function createSwiper(container, images) {
container.innerHTML = `
<div class="swiper-wrapper">
${images.map(item => `
<div class="swiper-slide">
<a href="${item.link}">
<img src="${item.image}" alt="${item.name}" loading="lazy" />
</a>
</div>
`).join('')}
</div>
`;
return new Swiper(container, {
slidesPerView: 'auto',
spaceBetween: 20,
loop: true,
centeredSlides: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
}
});
}
function createGridGallery(container, images) {
container.innerHTML = images.map(item => `
<a href="${item.link}">
<img src="${item.image}" alt="${item.name}" loading="lazy" />
</a>
`).join('');
}
async function initializeGalleries() {
function parseInlineGalleryData(element) {
try {
const content = element.textContent.trim();
if (!content) return null;
const jsonStr = `[${content}]`;
return { images: JSON.parse(jsonStr) };
} catch (error) {
console.error('Error parsing inline gallery data:', error);
return null;
}
}
async function initializeGallery(container, dataSource) {
if (!container) return;
let galleryData;
if (typeof dataSource === 'string') {
const allGalleryData = await loadGalleryData();
galleryData = allGalleryData?.[dataSource];
} else {
galleryData = dataSource;
}
if (!galleryData?.images?.length) {
console.error('No valid gallery data found');
return;
}
if (container.classList.contains('contenedor-imagenes-animado')) {
container.classList.add('swiper');
createSwiper(container, galleryData.images);
} else if (container.classList.contains('grid-gallery')) {
createGridGallery(container, galleryData.images);
}
}
const galleryContainers = {
'politicos-gallery': 'politicos',
'empresas-gallery': 'empresas',
'politicos-grid': 'politicos',
'empresas-grid': 'empresas'
};
for (const [containerId, dataKey] of Object.entries(galleryContainers)) {
const container = document.getElementById(containerId);
if (container) {
await initializeGallery(container, dataKey);
}
}
const inlineGallerySelector = '.contenedor-imagenes-animado:not(#politicos-gallery):not(#empresas-gallery)';
document.querySelectorAll(inlineGallerySelector).forEach(async (container) => {
const inlineData = parseInlineGalleryData(container);
if (inlineData) {
await initializeGallery(container, inlineData);
}
});
}
let currentPage = null;
let isFirstLoad = true;
document.addEventListener("DOMContentLoaded", () => {
const userLang = navigator.language || navigator.userLanguage;
let contentFile = 'web/en.html';
if (userLang.startsWith('es')) {
contentFile = 'web/es.html'; // Web Español
} else if (userLang.startsWith('pt')) {
contentFile = 'web/pt.html'; // WebPortugesBR
} else {
contentFile = 'web/en.html'; // Si no hay idioma compatible sera ingles predeterminado
}
currentPage = window.location.href;
loadContent(contentFile, false);
loadDisqus();
isFirstLoad = false;
setTimeout(hideLoadingScreen, 5000);
window.addEventListener('popstate', (event) => {
if (event.state && event.state.url) {
loadContent(event.state.url, false);
} else {
loadContent(contentFile, false);
}
});
});
document.addEventListener('click', (event) => {
const anchor = event.target.closest('a');
if (!anchor) return;
// Permitir enlaces con target="_blank" para que se abran en una nueva pestaña
if (anchor.target === "_blank") return;
if (!anchor.href.includes('web/')) return;
event.preventDefault();
const href = anchor.href;
const isSpecificFile = href.endsWith('.html');
const baseUrl = href.substring(0, href.lastIndexOf('/') + 1);
const targetUrl = isSpecificFile ? href : baseUrl + 'es.html';
window.scrollTo({ top: 0, behavior: 'smooth' });
loadContent(targetUrl);
});
</script>
<!-- Widget de Discord -->
<script src='https://cdn.jsdelivr.net/npm/@widgetbot/crate@3' async defer>
new Crate({
server: '1295581997967868005',
channel: '1295847194771066971'
})
</script>
<noscript>JavaScript OFF. Se requiere JS activado</noscript>
</body>
</html>