officegobmx-webpage/index.html

171 lines
6.1 KiB
HTML
Raw Normal View History

2023-01-23 18:08:10 -06:00
<!DOCTYPE html>
<html>
<head>
2024-03-15 18:08:27 -05:00
<link rel="icon" href="images/logofelipecarrillo-2024.svg" type="image/x-icon">
<meta name="description" content="Sitio de descarga para Office Gobmx">
<meta name="keywords" content="Office gobmx, Suite ofimática, writer, Office gratuito">
<meta http-equiv="content-language" content="es">
<title>Office GobMx</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-01-23 18:08:10 -06:00
<style>
body {
background-color: aliceblue;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.download-button {
background-color: #691c32;
2023-01-23 18:08:10 -06:00
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;
2023-01-23 18:08:10 -06:00
}
2023-03-20 14:42:41 -05:00
#os {
padding-top: 1px;
padding-bottom: 20px;
font-size: 12px;
}
2023-03-20 14:42:41 -05:00
#footer {
background: #26292B;
padding-top: 20px;
padding-bottom: 20px;
}
#footer p {
2023-06-19 21:32:31 -05:00
color: #6f7271;
2023-03-20 14:42:41 -05:00
font-size: 11px;
line-height: 13px;
}
#footer p a {
color: #00A500;
font-weight: normal;
text-decoration: none;
}
2023-01-23 18:08:10 -06:00
</style>
</head>
<body>
2023-03-07 12:50:01 -06:00
<!--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-->
2023-01-23 18:08:10 -06:00
</body>
<main>
<div class="p" style="background-color: #9F2241;">
2024-03-01 17:59:44 -06:00
<img src="images/logofelipecarrillo-2024.svg" >
2023-01-23 18:08:10 -06:00
2023-01-23 18:37:49 -06:00
</div>
<div class="q">
2024-03-15 18:08:27 -05:00
<h2>Office 24.8.0+gobmx-1.2</h2>
2023-01-23 18:08:10 -06:00
2023-03-11 13:39:04 -06:00
<!--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() {
2024-03-15 18:08:27 -05:00
window.location.href = "https://repos.libreoffice.gob.mx/windows/general/x86_64/Office_24.8.0.0_gobmx_1.2_Win_x86-64_en-MX_es.msi";
2023-03-11 13:39:04 -06:00
});
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>
2023-01-23 18:08:10 -06:00
</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>
2023-03-07 04:38:24 -06:00
<div>
<br>
2023-03-20 14:42:41 -05:00
<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>
2023-03-07 04:38:24 -06:00
</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>
2023-03-20 14:42:41 -05:00
<p class="dark-gray">
Copyright:
<a href="https://www.libreoffice.org/download/license/">Mozilla Public License v2.0</a>
2023-03-20 16:14:11 -05:00
</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>
2023-01-23 18:08:10 -06:00
</main>
2023-03-20 14:42:41 -05:00
<div id="who" class="width">
2023-01-23 18:08:10 -06:00
<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
2023-01-23 18:08:10 -06:00
<br>
<a href="https://www.gob.mx/cedn">www.gob.mx/cedn</a>
2023-01-23 18:08:10 -06:00
</div>
2023-03-20 14:42:41 -05:00
<section id="footer">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
2023-03-20 16:14:11 -05:00
<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>
2023-03-20 14:42:41 -05:00
</div>
</div>
</div>
</section>
2023-01-23 18:08:10 -06:00
<script>
2023-03-07 04:38:24 -06:00
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/')}
2023-01-23 18:08:10 -06:00
</script>
2023-03-07 04:38:24 -06:00
</html>