officegobmx-webpage/index.html
2024-03-01 17:59:44 -06:00

164 lines
5.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: aliceblue;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.download-button {
background-color: #691c32;
border: none;
color: aliceblue;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
}
.download-button:hover {
background-color: #98989a;
}
#os {
padding-top: 1px;
padding-bottom: 20px;
font-size: 12px;
}
#footer {
background: #26292B;
padding-top: 20px;
padding-bottom: 20px;
}
#footer p {
color: #6f7271;
font-size: 11px;
line-height: 13px;
}
#footer p a {
color: #00A500;
font-weight: normal;
text-decoration: none;
}
</style>
</head>
<body>
<!--header style="padding-top: 10px; font-size: 26pt; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: brown;">Office Gob</header-->
</body>
<main>
<div class="p" style="background-color: #9F2241;">
<img src="images/logofelipecarrillo-2024.svg" >
</div>
<div class="q">
<h2>Office 24.2.0+gobmx-1.1</h2>
<!--Selección de OS-->
<!--button id="download-button">Descargar</button-->
<download class="download-button" id="download-button">Descargar</a>
<script>
var downloadButton = document.getElementById("download-button");
var OSName = "Unknown OS";
if (navigator.platform.indexOf("Win") != -1) OSName = "Windows";
if (navigator.platform.indexOf("Mac") != -1) OSName = "MacOS";
if (navigator.platform.indexOf("Linux") != -1) OSName = "Linux";
switch (OSName) {
case "Windows":
downloadButton.addEventListener("click", function() {
window.location.href = "https://repos.libreoffice.gob.mx/windows/general/x86_64/Office_7.5.0.0_Win_x86-64_en-MX_es.msi";
});
break;
case "MacOS":
downloadButton.addEventListener("click", function() {
window.location.href = "https://repos.libreoffice.gob.mx/macOS/";
});
break;
case "Linux":
downloadButton.addEventListener("click", function() {
window.location.href = "https://repos.libreoffice.gob.mx/debs-rpm/";
});
break;
default:
downloadButton.disabled = true;
break;
}
</script>
</div>
<section id="os">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://repos.libreoffice.gob.mx/" target="_blank">Otros Sistemas Operativos</a>
</div>
</div>
</div>
</section>
<div>
<br>
<a href="https://git.softwarelibre.mx/strepsirrhini/libreoffice/-/wikis/Notas-de-la-Versi%C3%B3n";>Notas de la versión Libreoffice.gob</a>
</br>
<br>
<a href="https://www.libreoffice.org/download/release-notes/";>Notas de la versión</a>
</br>
<p class="dark-gray">
Versiones antiguas disponibles en el
<a href="https://repos.libreoffice.gob.mx/old">archivo</a>
</p>
<p class="dark-gray">
Licencia de código:
<a href="https://www.libreoffice.org/download/license/">Mozilla Public License v2.0</a>
</p>
<p class="dark-gray">
Copyright:
<a href="https://www.libreoffice.org/download/license/">Mozilla Public License v2.0</a>
</p>
<p class="dark-gray">
<a href="https://git.softwarelibre.mx/strepsirrhini/libreoffice/-/wikis/Pol%C3%ADtica-de-Privacidad">Política de privacidad</a>
</p>
</main>
<div id="who" class="width">
<br>
<br>
<br>
Av. Constituyentes 161 piso 4, San Miguel Chapultepec II Secc. Miguel Hidalgo, 11850 Ciudad de México, CDMX,
<br>
Tel. 55 50 93 53 00 Ext. 3011
<br>
<a href="https://www.gob.mx/cedn">www.gob.mx/cedn</a>
</div>
<section id="footer">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<p>"LibreOffice Gob" en un trabajo derivado de "Libreoffice" <a href="https://www.libreoffice.org/download/license/" target="_blank">Copyright</a>. <a href="https://git.libreoffice.org/core" target="_blank">Código</a>.</p>
</div>
</div>
</div>
</section>
<script>
function showCedn() {cednwnd = window.open('https://www.gob.mx/cedn', 'width=890,heigth=330,left=200,top=200,menubar=no,status=yes,toolbar=no')}
function showRlsNotes() {rlsNotes = window.open('https://www.libreoffice.org/download/release-notes/')}
</script>
</html>