parent
0b1c9bbf9f
commit
8dd33053e4
13
archive.html
13
archive.html
|
@ -93,9 +93,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -107,11 +107,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -961,3 +961,13 @@ html[dir="rtl"] body {
|
|||
content: '\f106';
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
* Customization for nav tabs
|
||||
*
|
||||
*/
|
||||
.nav-pills .nav-link {
|
||||
border-radius: 0;
|
||||
background: rgba(0,0,0,.03);
|
||||
}
|
||||
|
||||
|
|
|
@ -954,3 +954,13 @@ html[dir="rtl"] body {
|
|||
content: '\f106';
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
* Customization for nav tabs
|
||||
*
|
||||
*/
|
||||
.nav-pills .nav-link {
|
||||
border-radius: 0;
|
||||
background: rgba(0,0,0,.03);
|
||||
}
|
||||
|
||||
|
|
|
@ -25,3 +25,13 @@
|
|||
.collapsible-link[aria-expanded='true']::before {
|
||||
content: '\f106';
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
* Customization for nav tabs
|
||||
*
|
||||
*/
|
||||
.nav-pills .nav-link {
|
||||
border-radius: 0;
|
||||
background: rgba(0,0,0,.03);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* Detect no next Gancio events and deactivate Next events
|
||||
*/
|
||||
|
||||
function GetNextEventsCount() {
|
||||
const entryComponent = document.querySelector('#nextevents');
|
||||
const shadowRoot = entryComponent.shadowRoot;
|
||||
const app = shadowRoot.querySelector('div');
|
||||
if (app != null) {
|
||||
return app.children.length;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
function ActivePastEvents() {
|
||||
const nexttab = document.getElementById("tab-0");
|
||||
const next = document.getElementById("tab-pane-0");
|
||||
const pasttab = document.getElementById("tab-1");
|
||||
const past = document.getElementById("tab-pane-1");
|
||||
if (nexttab != null && next !== null){
|
||||
next.classList.remove("active");
|
||||
nexttab.classList.remove("active");
|
||||
next.classList.add("fade");
|
||||
}
|
||||
if (pasttab != null && past !== null){
|
||||
past.classList.remove("fade");
|
||||
past.classList.add("active");
|
||||
pasttab.classList.add("active");
|
||||
}
|
||||
}
|
||||
|
||||
function ActivePastEventsIfNotNexts() {
|
||||
if (GetNextEventsCount() == 0) {
|
||||
ActivePastEvents();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* Detect no next Gancio events and deactivare Next events
|
||||
*/
|
||||
|
||||
function GetNextEventsCount() {
|
||||
const entryComponent = document.querySelector('#nextevents');
|
||||
const shadowRoot = entryComponent.shadowRoot;
|
||||
const app = shadowRoot.querySelector('div');
|
||||
if (app != null) {
|
||||
return app.children.length;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
function ActivePastEvents() {
|
||||
const nexttab = document.getElementById("proximostab");
|
||||
const next = document.getElementById("proximos");
|
||||
const pasttab = document.getElementById("pasadostab");
|
||||
const past = document.getElementById("pasados");
|
||||
if (nexttab != null && next !== null){
|
||||
next.classList.remove("active");
|
||||
nexttab.classList.remove("active");
|
||||
next.classList.add("fade");
|
||||
}
|
||||
if (pasttab != null && past !== null){
|
||||
past.classList.remove("fade");
|
||||
past.classList.add("active");
|
||||
pasttab.classList.add("active");
|
||||
}
|
||||
}
|
||||
|
||||
function ActivePastEventsIfNotNexts() {
|
||||
if (GetNextEventsCount() == 0) {
|
||||
ActivePastEvents();
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -93,9 +93,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -107,11 +107,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -179,9 +179,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -193,11 +193,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -211,9 +211,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -225,11 +225,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -148,9 +148,9 @@ BIC/SWIFT: TRIOESMMXXX
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -162,11 +162,10 @@ BIC/SWIFT: TRIOESMMXXX
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
<link rel="apple-touch-icon" href="../assets/img/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="manifest" href="../assets/img/site.webmanifest" sizes="">
|
||||
<!--[if lt IE 9]><script src="../assets/js/html5.js"></script><![endif]--><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
|
||||
<link href="../assets/css/mastodon-timeline.min.css" rel="stylesheet">
|
||||
<meta name="author" content="Educatic">
|
||||
<meta property="og:site_name" content="EDUCATIC">
|
||||
<meta property="og:title" content="Eventos">
|
||||
|
@ -89,33 +88,48 @@ bg-dark
|
|||
|
||||
</div>
|
||||
</header><div class="e-content entry-content" itemprop="articleBody text">
|
||||
|
||||
<p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
<ul class="nav nav-pills nav-fill">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" data-toggle="tab" href="#tab-pane-0" id="tab-0">
|
||||
Próximos
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" data-toggle="tab" href="#tab-pane-1" id="tab-1">
|
||||
Pasados
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- Tab panes --><div class="tab-content">
|
||||
<div id="tab-pane-0" class="container-xl tab-pane active">
|
||||
<br><gancio-events baseurl="https://eventos.txs.es" title="Próximos eventos" theme="light" sidebar="false" id="nextevents"></gancio-events><p>No existen mas próximos eventos programados actualmente.</p>
|
||||
</div>
|
||||
<div id="tab-pane-1" class="container-xl tab-pane fade">
|
||||
<br><gancio-events baseurl="https://eventos.txs.es" title="Eventos pasados" theme="light" sidebar="false" past="true"></gancio-events>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/gancio-events.es.js"></script><p>
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
</article><!--End of body content-->
|
||||
</div>
|
||||
|
||||
<div class="col-lg-5 col-xl-4">
|
||||
<div class="container-xl">
|
||||
<img src="../assets/img/mastodon.svg" width="35" height="35" alt="Mastodon" class="d-inline-block align-top">
|
||||
</div>
|
||||
<!--Mastodon content-->
|
||||
|
||||
<div class="dummy-wrapper-timeline">
|
||||
<!-- Mastodon Timeline -->
|
||||
<div id="mt-container" class="mt-container">
|
||||
<div class="mt-body" role="feed">
|
||||
<div class="mt-loading-spinner"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -127,30 +141,14 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<script src="../assets/js/all-nocdn.js"></script><script src="../assets/js/mastodon-timeline.umd.js"></script><script>
|
||||
const myTimeline = new MastodonTimeline.Init({
|
||||
|
||||
instanceUrl: "https://txs.es",
|
||||
timelineType: "profile",
|
||||
userId: "44",
|
||||
profileName: "@EDUCATIC",
|
||||
defaultTheme: "light",
|
||||
dateFormatLocale: "es",
|
||||
btnSeeMore: "Ver mas publicaciones en Mastodon",
|
||||
btnReload: "Recargar",
|
||||
maxNbPostFetch: "5",
|
||||
maxNbPostShow: "5",
|
||||
|
||||
});
|
||||
</script><script>
|
||||
<script src="../assets/js/all-nocdn.js"></script><script>
|
||||
baguetteBox.run('div#content', {
|
||||
ignoreClass: 'islink',
|
||||
captions: function(element){var i=element.getElementsByTagName('img')[0];return i===undefined?'':i.alt;}});
|
||||
|
@ -223,6 +221,6 @@ const myTimeline = new MastodonTimeline.Init({
|
|||
for (let i = 0; i < document.forms.length; i++)
|
||||
document.forms[i].onsubmit = submit;
|
||||
})();
|
||||
</script>
|
||||
</script><script src="../assets/js/gancio-events-detect.js"></script><script> $(document).ready(function(){ ActivePastEventsIfNotNexts(); });</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -7,6 +7,19 @@
|
|||
.. link:
|
||||
.. description: Eventos que organiza o participa EDUCATIC
|
||||
.. type: text
|
||||
.. hidemastodon: True
|
||||
-->
|
||||
|
||||
{{% tabpannel active='1' %}}
|
||||
Próximos
|
||||
<gancio-events baseurl='https://eventos.txs.es' title='Próximos eventos' theme='light' sidebar='false' id='nextevents'></gancio-events><p>No existen mas próximos eventos programados actualmente.</p>
|
||||
|
||||
|
||||
Pasados
|
||||
<gancio-events baseurl='https://eventos.txs.es' title='Eventos pasados' theme='light' sidebar='false' past='true'></gancio-events>
|
||||
{{% /tabpannel %}}
|
||||
|
||||
|
||||
<script src='/assets/js/gancio-events.es.js'></script>
|
||||
|
||||
{{% gancio-events-detect %}}
|
||||
|
|
|
@ -138,9 +138,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -152,11 +152,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -107,9 +107,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -121,11 +121,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
13
index.html
13
index.html
|
@ -121,9 +121,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -135,11 +135,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -133,9 +133,9 @@ educatic@txs.es
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -147,11 +147,10 @@ educatic@txs.es
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -228,9 +228,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -242,11 +242,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -146,9 +146,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -160,11 +160,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -94,9 +94,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -108,11 +108,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -107,9 +107,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -121,11 +121,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -165,9 +165,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -179,11 +179,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -133,9 +133,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -147,11 +147,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -323,9 +323,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -337,11 +337,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://educatic.txs.es/archive.html</loc>
|
||||
<lastmod>2025-08-22T11:21:00Z</lastmod>
|
||||
<lastmod>2025-08-23T16:35:00Z</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://educatic.txs.es/categories/</loc>
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||
<sitemap>
|
||||
<loc>https://educatic.txs.es/sitemap.xml</loc>
|
||||
<lastmod>2025-08-22T11:21:00Z</lastmod>
|
||||
<lastmod>2025-08-23T16:35:00Z</lastmod>
|
||||
</sitemap>
|
||||
</sitemapindex>
|
|
@ -155,9 +155,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -169,11 +169,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -141,9 +141,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -155,11 +155,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -161,9 +161,9 @@ bg-dark
|
|||
|
||||
<!--End of Mastodon content-->
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
</div>
|
||||
<footer id="footer">
|
||||
© 2020-2025 Educatic
|
||||
-
|
||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
||||
<a href="xmpp:educatic-general@conference.txs.es?join" class="text-dark mx-2" title="Canal de mensajería XMPP"><i class="fas fa-comment"></i></a>
|
||||
|
@ -175,11 +175,10 @@ bg-dark
|
|||
Generado con <a href="https://getnikola.com" rel="nofollow">Nikola</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue