parent
0b1c9bbf9f
commit
8dd33053e4
|
@ -93,9 +93,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -109,9 +109,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -961,3 +961,13 @@ html[dir="rtl"] body {
|
||||||
content: '\f106';
|
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';
|
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 {
|
.collapsible-link[aria-expanded='true']::before {
|
||||||
content: '\f106';
|
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-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -109,9 +109,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -179,9 +179,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -195,9 +195,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -211,9 +211,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -227,9 +227,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -148,9 +148,9 @@ BIC/SWIFT: TRIOESMMXXX
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -164,9 +164,8 @@ BIC/SWIFT: TRIOESMMXXX
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
<link rel="apple-touch-icon" href="../assets/img/apple-touch-icon.png" sizes="180x180">
|
<link rel="apple-touch-icon" href="../assets/img/apple-touch-icon.png" sizes="180x180">
|
||||||
<link rel="manifest" href="../assets/img/site.webmanifest" sizes="">
|
<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">
|
<!--[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 name="author" content="Educatic">
|
||||||
<meta property="og:site_name" content="EDUCATIC">
|
<meta property="og:site_name" content="EDUCATIC">
|
||||||
<meta property="og:title" content="Eventos">
|
<meta property="og:title" content="Eventos">
|
||||||
|
@ -89,33 +88,48 @@ bg-dark
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</header><div class="e-content entry-content" itemprop="articleBody text">
|
</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>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</article><!--End of body content-->
|
</article><!--End of body content-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-5 col-xl-4">
|
</div>
|
||||||
<div class="container-xl">
|
<footer id="footer">
|
||||||
<img src="../assets/img/mastodon.svg" width="35" height="35" alt="Mastodon" class="d-inline-block align-top">
|
© 2020-2025 Educatic
|
||||||
</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
|
|
||||||
-
|
-
|
||||||
<a href="mailto:educatic@txs.es" class="text-dark mx-2" title="Enviar un correo"><i class="fas fa-envelope"></i></a>
|
<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>
|
<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>
|
||||||
|
@ -129,28 +143,12 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<script src="../assets/js/all-nocdn.js"></script><script src="../assets/js/mastodon-timeline.umd.js"></script><script>
|
<script src="../assets/js/all-nocdn.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>
|
|
||||||
baguetteBox.run('div#content', {
|
baguetteBox.run('div#content', {
|
||||||
ignoreClass: 'islink',
|
ignoreClass: 'islink',
|
||||||
captions: function(element){var i=element.getElementsByTagName('img')[0];return i===undefined?'':i.alt;}});
|
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++)
|
for (let i = 0; i < document.forms.length; i++)
|
||||||
document.forms[i].onsubmit = submit;
|
document.forms[i].onsubmit = submit;
|
||||||
})();
|
})();
|
||||||
</script>
|
</script><script src="../assets/js/gancio-events-detect.js"></script><script> $(document).ready(function(){ ActivePastEventsIfNotNexts(); });</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -7,6 +7,19 @@
|
||||||
.. link:
|
.. link:
|
||||||
.. description: Eventos que organiza o participa EDUCATIC
|
.. description: Eventos que organiza o participa EDUCATIC
|
||||||
.. type: text
|
.. 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-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -154,9 +154,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -107,9 +107,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -123,9 +123,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -121,9 +121,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -137,9 +137,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -133,9 +133,9 @@ educatic@txs.es
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -149,9 +149,8 @@ educatic@txs.es
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -228,9 +228,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -244,9 +244,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -146,9 +146,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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,9 +162,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -94,9 +94,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -110,9 +110,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -107,9 +107,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -123,9 +123,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -165,9 +165,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -181,9 +181,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -133,9 +133,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -149,9 +149,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -323,9 +323,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -339,9 +339,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://educatic.txs.es/archive.html</loc>
|
<loc>https://educatic.txs.es/archive.html</loc>
|
||||||
<lastmod>2025-08-22T11:21:00Z</lastmod>
|
<lastmod>2025-08-23T16:35:00Z</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://educatic.txs.es/categories/</loc>
|
<loc>https://educatic.txs.es/categories/</loc>
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||||
<sitemap>
|
<sitemap>
|
||||||
<loc>https://educatic.txs.es/sitemap.xml</loc>
|
<loc>https://educatic.txs.es/sitemap.xml</loc>
|
||||||
<lastmod>2025-08-22T11:21:00Z</lastmod>
|
<lastmod>2025-08-23T16:35:00Z</lastmod>
|
||||||
</sitemap>
|
</sitemap>
|
||||||
</sitemapindex>
|
</sitemapindex>
|
|
@ -155,9 +155,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -171,9 +171,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -141,9 +141,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -157,9 +157,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -161,9 +161,9 @@ bg-dark
|
||||||
|
|
||||||
<!--End of Mastodon content-->
|
<!--End of Mastodon content-->
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
© 2020-2025 Educatic
|
© 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="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>
|
<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>
|
||||||
|
@ -177,9 +177,8 @@ bg-dark
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue