EIE::lingua-ignis: Add website
This commit is contained in:
parent
6d8e0b6f28
commit
24d8a278be
Binary file not shown.
Before Width: | Height: | Size: 3.5 KiB |
@ -1,36 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="es-ES" >
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Language" content="es-ES" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="keywords" content="languages, translation, templates" />
|
||||
<meta name="description" content="El servicio para facilitar la traducción de plantillas." />
|
||||
<meta name="author" content="Nicolás A. Ortega Froysa" />
|
||||
<meta name="generator" content="Isidore" />
|
||||
<title>Inicio - Lingua Ignis</title>
|
||||
<link rel="stylesheet" href="/style.css" type="text/css" />
|
||||
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Lingua Ignis</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<a href="/" >Inicio</a>
|
||||
<a href="/services.html" >Servicios</a>
|
||||
<a href="/mission.html" >Misión</a>
|
||||
<a href="/team.html" >El Equipo</a>
|
||||
</nav>
|
||||
<main>
|
||||
|
||||
<h1>Inicio</h1>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<p>Copyright © 2022-2023 Lingua Ignis<br />
|
||||
This document is licensed under the
|
||||
<a href="https://creativecommons.org/licenses/by-nd/4.0/" >CC-BY-ND 4.0 License</a>.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@ -1,199 +0,0 @@
|
||||
/*
|
||||
* This is free and unencumbered software released into the public domain.
|
||||
*
|
||||
* Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||
* distribute this software, either in source code form or as a compiled
|
||||
* binary, for any purpose, commercial or non-commercial, and by any
|
||||
* means.
|
||||
*
|
||||
* In jurisdictions that recognize copyright laws, the author or authors
|
||||
* of this software dedicate any and all copyright interest in the
|
||||
* software to the public domain. We make this dedication for the benefit
|
||||
* of the public at large and to the detriment of our heirs and
|
||||
* successors. We intend this dedication to be an overt act of
|
||||
* relinquishment in perpetuity of all present and future rights to this
|
||||
* software under copyright law.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* For more information, please refer to <http://unlicense.org/>
|
||||
*/
|
||||
|
||||
/* GENERAL */
|
||||
body {
|
||||
background-color: #fdf6e3;
|
||||
color: #45575C;
|
||||
}
|
||||
|
||||
header {
|
||||
margin: 30px;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-family: sans-serif;
|
||||
font-size: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
background-color: #eee8d5;
|
||||
width: 100%;
|
||||
padding-top: 7px;
|
||||
text-align: center;
|
||||
border-top: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
nav > a {
|
||||
text-decoration: none;
|
||||
font-size: 24px;
|
||||
font-family: sans-serif;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
nav > a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #d33682;
|
||||
}
|
||||
|
||||
main {
|
||||
width: 60%;
|
||||
margin: 5px auto;
|
||||
text-align: justify;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
main h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
width: 35%;
|
||||
margin: 7px auto;
|
||||
border-top: 1px solid;
|
||||
}
|
||||
|
||||
ol.refs {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
ol.refs li {
|
||||
list-style-type: none;
|
||||
counter-increment: step_counter;
|
||||
}
|
||||
|
||||
ol.refs > li:before {
|
||||
content: "[" counter(step_counter) "] ";
|
||||
}
|
||||
|
||||
ol.notes {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
ol.notes li {
|
||||
list-style-type: none;
|
||||
counter-increment: note_counter;
|
||||
}
|
||||
|
||||
ol.notes > li:before {
|
||||
content: "(" counter(note_counter) ") ";
|
||||
}
|
||||
|
||||
ol.roman-numerals {
|
||||
list-style-type: upper-roman;
|
||||
}
|
||||
|
||||
sup {
|
||||
font-size: 12px;
|
||||
line-height: 80%;
|
||||
}
|
||||
|
||||
figure {
|
||||
/*margin: 0 auto 0 auto;*/
|
||||
/*text-align: center;*/
|
||||
/*width: 65%;*/
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
img.album-cover {
|
||||
width: 40%;
|
||||
/*float: right;*/
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
border-radius: 15%;
|
||||
}
|
||||
|
||||
.track-list th {
|
||||
text-align: center;
|
||||
padding: 1px 10px;
|
||||
}
|
||||
|
||||
.track-list td {
|
||||
padding: 1px 10px;
|
||||
}
|
||||
|
||||
/* SPECIFIC */
|
||||
img#profile {
|
||||
width: 40%;
|
||||
float: right;
|
||||
border-radius: 15%;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/* SMALL SCREENS */
|
||||
@media (max-width: 1200px) {
|
||||
/* GENERIC */
|
||||
body {
|
||||
font-size: 22px;
|
||||
}
|
||||
header > h1 {
|
||||
font-size: 75px;
|
||||
}
|
||||
nav > a {
|
||||
font-size: 32px;
|
||||
}
|
||||
main {
|
||||
width: 90%;
|
||||
}
|
||||
main h1 {
|
||||
font-size: 38px;
|
||||
}
|
||||
main h2 {
|
||||
font-size: 34px;
|
||||
}
|
||||
main h3 {
|
||||
font-size: 30px;
|
||||
}
|
||||
main h4 {
|
||||
font-size: 26px;
|
||||
}
|
||||
footer {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
/* SPECIFIC */
|
||||
img#profile {
|
||||
float: none;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 30%;
|
||||
}
|
||||
}
|
33
2/EIE/assignments/lingua-ignis/website/site/index.html.php
Normal file
33
2/EIE/assignments/lingua-ignis/website/site/index.html.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
$title = "Inicio";
|
||||
|
||||
include("templates/header.html.php");
|
||||
?>
|
||||
|
||||
<h1><?= $title ?></h1>
|
||||
|
||||
<p>
|
||||
A menudo nuestras organizaciones e instituciones no proveen traducciones
|
||||
necesarias a otros idiomas de documentos estandarizados, por el simple hecho de
|
||||
que contratar un traductor les puede incurrir un gasto demasiado alto para algo
|
||||
tan recurrente. A causa de esto, vemos muchos casos en los que hay personas que
|
||||
no entienden qué están firmando cuando reciben permisos y notificaciones.
|
||||
Podemos pensar en los padres inmigrantes, que aún les cuesta la lengua nativa
|
||||
del país en el que están, cuyos hijos tienen que hacer de intérprete en
|
||||
cualquier ocasión de interacción entre la escuela y los padres.
|
||||
|
||||
<p>
|
||||
<i>Lingua Ignis</i> es una empresa que busca hacer que este tipo de traducciones
|
||||
sea más fácil, y a menos coste que contratar un traductor para las traducciones.
|
||||
Notamos que la mayoría de estos documentos suelen ser del mismo tipo, cambiando
|
||||
tan sólo algunos datos. Por lo tanto, queremos ofrecer una plataforma que provee
|
||||
plantillas de documentos en varios idiomas, que al rellenar unos pocos de datos
|
||||
no-traducibles (e.g. nombres propios) y fácilmente formateados (e.g. fechas),
|
||||
el servicio que proveemos generará los documentos de manera instantánea en las
|
||||
lenguas solicitadas. Esto facilitaría que nuestros clientes puedan ofrecer
|
||||
notificaciones de una manera más cómoda a sus propios clientes, en la lengua que
|
||||
ellos entienden mejor.
|
||||
|
||||
<?php
|
||||
include("templates/footer.html.php");
|
||||
?>
|
@ -1,11 +1,21 @@
|
||||
<?php
|
||||
$title = "Inicio";
|
||||
$title = "Misión";
|
||||
|
||||
include("templates/header.html.php");
|
||||
?>
|
||||
|
||||
<h1><?= $title ?></h1>
|
||||
|
||||
<p>
|
||||
Nuestra empresa busca crear una alternativa a las vías convencionales del sector
|
||||
de la traducción. Sobre todo, busca proveer una forma de acercar nuestras
|
||||
instituciones a algunas de las personas más marginadas de nuestra sociedad, que
|
||||
ya sufren de por sí el <i>shock</i> cultural de estar fuera de su país de
|
||||
origen, normalmente por motivos de necesidad. El servicio de <i>Lingua Ignis</i>
|
||||
serviría para facilitar la comunicación regular entre éstos dos, y así fomentar
|
||||
el diálogo y la convivencia. Esperamos que, mediante nuestros servicios, podemos
|
||||
contribuir a un mundo mejor.
|
||||
|
||||
<?php
|
||||
include("templates/footer.html.php");
|
||||
?>
|
||||
|
@ -1,11 +1,63 @@
|
||||
<?php
|
||||
$title = "Inicio";
|
||||
$title = "Servicios";
|
||||
|
||||
include("templates/header.html.php");
|
||||
?>
|
||||
|
||||
<h1><?= $title ?></h1>
|
||||
|
||||
<p>
|
||||
Aquí puede usted encontrar la lista de todos los servicios que proveemos en
|
||||
<i>Lingua Ignis</i>, y los precios asociados.
|
||||
|
||||
<h2>Colección de Plantillas</h2>
|
||||
|
||||
<p>
|
||||
Este es nuestro servicio principal y distintivo. Consta de colecciones de
|
||||
plantillas, que se agrupan por tema/sector. Estas plantillas suelen ser de
|
||||
carácter general, y tan sólo tendrá que introducir los datos pertinentes y
|
||||
específicos para el caso concreto. Tendrá acceso a todas las plantillas de la
|
||||
colección que elige para traducir a las lenguas que elija, y podrá usarlas las
|
||||
veces que quiera.
|
||||
|
||||
<p>
|
||||
Elige la colección que le interesa, junto con las lenguas a las que quiere
|
||||
traducir los documentos, y dependiendo de su selección, su precio será en
|
||||
función de eso.
|
||||
|
||||
<h3>Colecciones</h3>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>Colección</th>
|
||||
<th>Inglés</th>
|
||||
<th>Francés</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Escuela</td>
|
||||
<td>25€/mes</td>
|
||||
<td>28€/mes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Salud</td>
|
||||
<td>35€/mes</td>
|
||||
<td>40€/mes</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Traducción de Nuevas Plantillas</h2>
|
||||
|
||||
<p>
|
||||
Como es de esperar, puede ser que tenga otros documentos que quiera convertir en
|
||||
plantilla, o simplemente que no tengamos la plantilla que desea. Para esto
|
||||
proveemos el servicio de <i>traducción de nuevas plantillas</i>. Nos envía el
|
||||
documento que quiera convertir en plantilla, y nosotros lo traducimos y lo
|
||||
añadimos a la plataforma en una colección especial (particular) suya. Mantenemos
|
||||
el derecho de usar estas plantillas en nuestras colecciones oficiales si vemos
|
||||
que se pueden aprovechar.
|
||||
|
||||
<h2>Traducción Tradicional</h2>
|
||||
|
||||
<?php
|
||||
include("templates/footer.html.php");
|
||||
?>
|
||||
|
@ -122,12 +122,6 @@ sup {
|
||||
line-height: 80%;
|
||||
}
|
||||
|
||||
figure {
|
||||
/*margin: 0 auto 0 auto;*/
|
||||
/*text-align: center;*/
|
||||
/*width: 65%;*/
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: 14px;
|
||||
}
|
||||
@ -140,21 +134,18 @@ img.album-cover {
|
||||
border-radius: 15%;
|
||||
}
|
||||
|
||||
.track-list th {
|
||||
table, th, td {
|
||||
border: 1px solid black;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: center;
|
||||
padding: 1px 10px;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.track-list td {
|
||||
padding: 1px 10px;
|
||||
}
|
||||
|
||||
/* SPECIFIC */
|
||||
img#profile {
|
||||
width: 40%;
|
||||
float: right;
|
||||
border-radius: 15%;
|
||||
margin: 10px;
|
||||
td {
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
/* SMALL SCREENS */
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
$title = "Inicio";
|
||||
$title = "El Equipo";
|
||||
|
||||
include("templates/header.html.php");
|
||||
?>
|
||||
|
BIN
2/EIE/assignments/lingua-ignis/website/site/website-banner.png
Normal file
BIN
2/EIE/assignments/lingua-ignis/website/site/website-banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
@ -1,8 +1,7 @@
|
||||
</main>
|
||||
<footer>
|
||||
<p>Copyright © 2022-<?= date("Y") ?> Lingua Ignis<br />
|
||||
This document is licensed under the
|
||||
<a href="https://creativecommons.org/licenses/by-nd/4.0/" >CC-BY-ND 4.0 License</a>.</p>
|
||||
Se reservan todos los derechos.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -14,7 +14,9 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1><?= $site_name ?></h1>
|
||||
<center>
|
||||
<a href="/" ><img src="/website-banner.png" alt="Website banner" width="40%" /></a>
|
||||
</center>
|
||||
</header>
|
||||
<nav>
|
||||
<a href="/" >Inicio</a>
|
||||
|
Loading…
Reference in New Issue
Block a user