[gnomeweb-wml] diagnome: new site thanks to vinicius
- From: Diego Escalante Urrelo <diegoe src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnomeweb-wml] diagnome: new site thanks to vinicius
- Date: Wed, 7 Oct 2009 17:58:39 +0000 (UTC)
commit 9adb36731c1d67004786d40900ee1183175fea9c
Author: Diego Escalante Urrelo <diegoe gnome org>
Date: Wed Oct 7 12:53:10 2009 -0500
diagnome: new site thanks to vinicius
projects.gnome.org/diagnome/Makefile.am | 21 ++--
projects.gnome.org/diagnome/diagnome.css | 136 ++++++++++++++++++++++
projects.gnome.org/diagnome/expositores.html | 66 +++++++++++
projects.gnome.org/diagnome/grid.css | 128 +++++++++++++++++++++
projects.gnome.org/diagnome/header.png | Bin 0 -> 338962 bytes
projects.gnome.org/diagnome/index.html | 94 +++++++++++++++
projects.gnome.org/diagnome/mapa-diagnome.png | Bin 0 -> 223059 bytes
projects.gnome.org/diagnome/presentation.png | Bin 0 -> 16145 bytes
projects.gnome.org/diagnome/programa.html | 152 +++++++++++++++++++++++++
9 files changed, 586 insertions(+), 11 deletions(-)
---
diff --git a/projects.gnome.org/diagnome/Makefile.am b/projects.gnome.org/diagnome/Makefile.am
index bc156f6..46ea8bd 100644
--- a/projects.gnome.org/diagnome/Makefile.am
+++ b/projects.gnome.org/diagnome/Makefile.am
@@ -1,16 +1,15 @@
-SUBDIRS=images
+SUBDIRS=
urlpath = /diagnome/
-page_SCRIPTS= index.html \
- programa.html \
- expositores.html \
- layout.css \
- header.png \
- facebook.png \
- index.html.es \
- index.html.en \
- diagnome.css
-
+page_SCRIPTS= diagnome.css \
+ grid.css \
+ facebook.png \
+ header.png \
+ presentation.png \
+ mapa-diagnome.png \
+ expositores.html \
+ index.html \
+ programa.html
include $(top_srcdir)/rules.common
diff --git a/projects.gnome.org/diagnome/diagnome.css b/projects.gnome.org/diagnome/diagnome.css
new file mode 100644
index 0000000..18dbf79
--- /dev/null
+++ b/projects.gnome.org/diagnome/diagnome.css
@@ -0,0 +1,136 @@
+body {
+ margin: 0;
+ background: #fff;
+ font-family: "DejaVu Sans", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #2e3436;
+}
+a {
+ color: #1f62b9;
+}
+
+.language {
+ float: right;
+ margin-top: 30px;
+}
+/*.language a {
+ margin-left: 6px;
+ color: #999;
+}
+.language a.active {
+ font-weight: bold;
+}*/
+.navigation {
+ margin-top: 20px;
+ border-bottom: 1px solid #d3d7cf;
+ padding: 10px 10px 5px;
+}
+.navigation a {
+ background: #fff;
+ border: 1px solid #ececec;
+ border-bottom-color: #d3d7cf;
+ padding: 5px 10px;
+ background: #fbfbfa;
+ -moz-border-radius-topleft: 3px;
+ -moz-border-radius-topright: 3px;
+ -webkit-border-top-left-radius: 3px;
+ -webkit-border-top-right-radius: 3px;
+}
+.navigation a.active {
+ border-bottom-color: #fff;
+ background: #fff;
+}
+
+.important {
+ font-size: 29px;
+}
+
+h1 {
+ margin-top: 1.5em;
+ font-size: 20px;
+}
+
+.facebook {
+ background: #eeeeec url(facebook.png) 2px 2px no-repeat;
+ padding: 5px 5px 5px 28px;
+ display: block;
+ float: left;
+ border: 1px solid #babdb6;
+ border-top-color: #d3d7cf;
+ border-left-color: #d3d7cf;
+ -moz-box-shadow: 0 2px 4px #e4e4e4;
+ -webkit-box-shadow: 0 2px 4px #e4e4e4;
+
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#footer {
+ overflow: hidden;
+ margin-top: 30px;
+ clear: left;
+ background: #333;
+ color: #fff;
+ padding: 20px 0;
+}
+#footer a {
+ color: inherit;
+}
+li {
+ margin-bottom: 0.4em;
+}
+
+/* programa pvillavi */
+#rounded-corner
+{
+ text-align: left;
+ width: 100%;
+ border:#ccc 1px solid;
+ -moz-border-radius:10px;
+ -webkit-border-radius:10px;
+ border-radius:10px;
+}
+#rounded-corner tr:first-child td:first-child
+{
+ -moz-border-radius-topleft: 10px;
+ -webkit-border-top-left-radius: 10px;
+ border-top-left-radius: 10px;
+}
+#rounded-corner tr:first-child td:last-child
+{
+ -moz-border-radius-topright: 10px;
+ -webkit-border-top-right-radius: 10px;
+ border-top-right-radius: 10px;
+}
+#rounded-corner tr:last-child td:first-child
+{
+ -moz-border-radius-bottomleft: 10px;
+ -webkit-border-bottom-left-radius: 10px;
+ border-bottom-left-radius: 10px;
+}
+#rounded-corner tr:last-child td:last-child
+{
+ -moz-border-radius-bottomright: 10px;
+ -webkit-border-bottom-right-radius: 10px;
+ border-bottom-right-radius: 10px;
+}
+#rounded-corner td
+{
+ padding: 4px;
+ background: #fafaf8;
+ border-top: 1px solid #fff;
+ color: #336;
+}
+#rounded-corner tbody tr:hover td
+{
+ background: #1f62b9;
+ color: #fff;
+}
+#rounded-corner tbody td.break
+{
+ background: #def9e6;
+}
+#rounded-cornet tbody tb.break:hover
+{
+ background: lightgreen;
+}
diff --git a/projects.gnome.org/diagnome/expositores.html b/projects.gnome.org/diagnome/expositores.html
new file mode 100644
index 0000000..81d783e
--- /dev/null
+++ b/projects.gnome.org/diagnome/expositores.html
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="utf-8";?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+ <title>DÃa GNOME 2009 - ValparaÃso, Chile.</title>
+ <link href="grid.css" rel="stylesheet" type="text/css" media="screen">
+ <link rel="stylesheet" type="text/css" href="diagnome.css">
+</head>
+<body>
+ <div class="container_2">
+ <div class="grid_2">
+
+ <!--<div class="language">
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ DÃa GNOME en Facebook
+ </a>
+ </div>-->
+
+ <div class="navigation">
+ <a href="index.html">DÃa GNOME</a>
+ <a href="programa.html">Programa</a>
+ <a href="expositores.html" class="active">Expositores</a>
+ </div>
+
+ </div>
+
+ <div class="grid_1">
+ <h1>Expositores del DÃa GNOME 2009</h1>
+
+ <p>
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ Acosa a nuestros expositores en el grupo DÃa GNOME en Facebook
+ </a>
+ </p>
+
+ <br style="clear: left;" /><br/>
+
+ <p>
+ Actualmente se están evaluando los trabajos presentados. Pronto publicaremos los detalles.
+ </p>
+ </div>
+
+ <div class="grid_1">
+ <div style="margin-top: 30px;"><img src="header.png" alt="" width="430" /></div>
+ <h1>Cómo llegar</h1>
+
+ <p>El DÃa GNOME se realizara en el Salón T de la UTFSM, puedes <a href="mapa-diagnome.png">ver un mapa más detallado</a> de la ubicación del auditorio dentro de la universidad.</p>
+
+ <p><iframe width="100%" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15&output=embed"></iframe><br /><small>Ver <a href="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15" style="color:#0000FF;text-align:left">DÃa GNOME</a> en un mapa más grande</small></p>
+ </div>
+ </div>
+
+ <br style="clear: left;" />
+
+ <div id="footer">
+ <div class="container_2">
+ <div class="grid_2">
+ Copyright © 2009 The GNOME Project.<br />
+ Diseño por Andreas Nilsson, Diego Escalante Urrelo, Pedro Villavicencio Garrido y Vinicius Depizzol.
+ </div>
+ </div>
+ </div>
+</body>
+</html>
diff --git a/projects.gnome.org/diagnome/grid.css b/projects.gnome.org/diagnome/grid.css
new file mode 100644
index 0000000..c6f33b8
--- /dev/null
+++ b/projects.gnome.org/diagnome/grid.css
@@ -0,0 +1,128 @@
+/*
+ Variable Grid System.
+ Learn more ~ http://www.spry-soft.com/grids/
+ Based on 960 Grid System - http://960.gs/
+
+ Licensed under GPL and MIT.
+*/
+
+
+/* Containers
+----------------------------------------------------------------------------------------------------*/
+.container_2 {
+ margin-left: auto;
+ margin-right: auto;
+ width: 960px;
+}
+
+/* Grid >> Global
+----------------------------------------------------------------------------------------------------*/
+
+.grid_1,
+.grid_2 {
+ display:inline;
+ float: left;
+ position: relative;
+ margin-left: 25px;
+ margin-right: 25px;
+}
+
+/* Grid >> Children (Alpha ~ First, Omega ~ Last)
+----------------------------------------------------------------------------------------------------*/
+
+.alpha {
+ margin-left: 0;
+}
+
+.omega {
+ margin-right: 0;
+}
+
+/* Grid >> 2 Columns
+----------------------------------------------------------------------------------------------------*/
+
+.container_2 .grid_1 {
+ width:430px;
+}
+
+.container_2 .grid_2 {
+ width:910px;
+}
+
+
+
+/* Prefix Extra Space >> 2 Columns
+----------------------------------------------------------------------------------------------------*/
+
+.container_2 .prefix_1 {
+ padding-left:480px;
+}
+
+
+
+/* Suffix Extra Space >> 2 Columns
+----------------------------------------------------------------------------------------------------*/
+
+.container_2 .suffix_1 {
+ padding-right:480px;
+}
+
+
+
+/* Push Space >> 2 Columns
+----------------------------------------------------------------------------------------------------*/
+
+.container_2 .push_1 {
+ left:480px;
+}
+
+
+
+/* Pull Space >> 2 Columns
+----------------------------------------------------------------------------------------------------*/
+
+.container_2 .pull_1 {
+ left:-480px;
+}
+
+
+
+
+/* Clear Floated Elements
+----------------------------------------------------------------------------------------------------*/
+
+/* http://sonspring.com/journal/clearing-floats */
+
+.clear {
+ clear: both;
+ display: block;
+ overflow: hidden;
+ visibility: hidden;
+ width: 0;
+ height: 0;
+}
+
+/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
+
+.clearfix:after {
+ clear: both;
+ content: ' ';
+ display: block;
+ font-size: 0;
+ line-height: 0;
+ visibility: hidden;
+ width: 0;
+ height: 0;
+}
+
+.clearfix {
+ display: inline-block;
+}
+
+* html .clearfix {
+ height: 1%;
+}
+
+.clearfix {
+ display: block;
+}
\ No newline at end of file
diff --git a/projects.gnome.org/diagnome/header.png b/projects.gnome.org/diagnome/header.png
new file mode 100644
index 0000000..e6f8bc3
Binary files /dev/null and b/projects.gnome.org/diagnome/header.png differ
diff --git a/projects.gnome.org/diagnome/index.html b/projects.gnome.org/diagnome/index.html
new file mode 100644
index 0000000..218ec69
--- /dev/null
+++ b/projects.gnome.org/diagnome/index.html
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="utf-8";?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+ <title>DÃa GNOME 2009 - ValparaÃso, Chile.</title>
+ <link href="grid.css" rel="stylesheet" type="text/css" media="screen">
+ <link rel="stylesheet" type="text/css" href="diagnome.css">
+</head>
+<body>
+ <div class="container_2">
+ <div class="grid_2">
+
+ <!--<div class="language">
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ DÃa GNOME en Facebook
+ </a>
+ </div>-->
+
+ <div class="navigation">
+ <a href="index.html" class="active">DÃa GNOME</a>
+ <a href="programa.html">Programa</a>
+ <a href="expositores.html">Expositores</a>
+ </div>
+
+ </div>
+
+ <div class="grid_1">
+ <p class="important"><img src="presentation.png" alt="¡El evento más grande de GNOME en la costa del PacÃfico se vuelve a repetir!" /></p>
+
+ <h1>¡DÃa GNOME en Chile! ¡2009!</h1>
+
+ <p>Siguiendo la filosofÃa del proyecto, el DÃa GNOME es un espacio libre, horizontal y accesible para conocer a otros entusiastas y desarrolladores, compartir ideas, quejas, proyectos, todo en un ambiente de amistad y buena onda.</p>
+
+ <p>En esta ocasión, y gracias al apoyo de la Fundación GNOME y el Décimo Encuentro Linux, nos acompañarán expositores de Perú y Finlandia quienes compartirán con nosotros sus experiencias y anécdotas.</p>
+
+ <p>El evento se llevará a cabo el dÃa <strong>sábado 24 de octubre de 2009</strong> en la Universidad Técnica Federico Santa MarÃa, en la ciudad de ValparaÃso, Chile. Enmarcado dentro del Décimo Encuentro Linux a realizarse desde el jueves 22 al sábado 24 de octubre en dicha ciudad.</p>
+
+ <p>
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ DÃa GNOME en Facebook
+ </a>
+ </p>
+
+ <br style="clear: left;" />
+
+ <h1>¡Participa!</h1>
+
+ <p>La inscripción no tiene costo, solamente debes <a href="http://registro.gnome.cl/">inscribirte en esta página</a> la cual nos ayudará a programarnos de mejor forma.</p>
+
+ <p>El salón donde se realizará el evento tiene una capacidad máxima de 300 personas y tendrán preferencia las personas inscritas.</p>
+
+ <ul>
+ <li>¿Asistiras al evento? <a href="http://registro.gnome.cl/">¡InscrÃbete!</a></li>
+ <li>¡SubscrÃbete a la <a href="http://mail.gnome.org/mailman/listinfo/gnome-cl-list">lista de correo</a> de <a href="http://www.gnome.cl/">GNOME Chile</a>!</li>
+ <li>Visita la página de <a href="http://www.gnome.cl/">GNOME Chile</a></li>
+ <li>¡�nete al <a href="http://www.facebook.com/group.php?gid=147294960046">grupo de Facebook</a>!</li>
+ </ul>
+
+ <h1>Cómo llegar</h1>
+
+ <p>El DÃa GNOME se realizara en el Salón T de la UTFSM, puedes <a href="mapa-diagnome.png">ver un mapa más detallado</a> de la ubicación del auditorio dentro de la universidad.</p>
+
+ <p><iframe width="100%" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15&output=embed"></iframe><br /><small>Ver <a href="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15" style="color:#0000FF;text-align:left">DÃa GNOME</a> en un mapa más grande</small></p>
+ </div>
+
+ <div class="grid_1">
+ <div style="margin-top: 30px;"><img src="header.png" alt="" width="430" /></div>
+
+ <h1>Ã?ltimas noticias</h1>
+
+ <p><a href="http://twitter.com/diagnome">@diagnome</a> en Twitter:</p>
+
+ <ul id="twitter_update_list">
+
+ </ul>
+ <script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
+ <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/diagnome.json?callback=twitterCallback2&count=2"></script>
+ </div>
+ </div>
+
+ <br style="clear: left;" />
+
+ <div id="footer">
+ <div class="container_2">
+ <div class="grid_2">
+ Copyright © 2009 The GNOME Project.<br />
+ Diseño por Andreas Nilsson, Diego Escalante Urrelo, Pedro Villavicencio Garrido y Vinicius Depizzol.
+ </div>
+ </div>
+ </div>
+</body>
+</html>
diff --git a/projects.gnome.org/diagnome/mapa-diagnome.png b/projects.gnome.org/diagnome/mapa-diagnome.png
new file mode 100644
index 0000000..420c84e
Binary files /dev/null and b/projects.gnome.org/diagnome/mapa-diagnome.png differ
diff --git a/projects.gnome.org/diagnome/presentation.png b/projects.gnome.org/diagnome/presentation.png
new file mode 100644
index 0000000..4edd819
Binary files /dev/null and b/projects.gnome.org/diagnome/presentation.png differ
diff --git a/projects.gnome.org/diagnome/programa.html b/projects.gnome.org/diagnome/programa.html
new file mode 100644
index 0000000..5048ce7
--- /dev/null
+++ b/projects.gnome.org/diagnome/programa.html
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="utf-8";?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+ <title>DÃa GNOME 2009 - ValparaÃso, Chile.</title>
+ <link href="grid.css" rel="stylesheet" type="text/css" media="screen">
+ <link rel="stylesheet" type="text/css" href="diagnome.css">
+</head>
+<body>
+ <div class="container_2">
+ <div class="grid_2">
+
+ <!--<div class="language">
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ DÃa GNOME en Facebook
+ </a>
+ </div>-->
+
+ <div class="navigation">
+ <a href="index.html">DÃa GNOME</a>
+ <a href="programa.html" class="active">Programa</a>
+ <a href="expositores.html">Expositores</a>
+ </div>
+
+ </div>
+
+ <div class="grid_1">
+ <h1>Programa del DÃa GNOME 2009</h1>
+
+ <p>
+ La acreditación empezará a las 9 hrs y las charlas a las 9:30 hrs, mientras más temprano llegues mejores sitios tendrás y no te perderás de las sorpresas como gorritos, stickers, camisetas. Terminaremos el dÃa a las 19 hrs.
+ </p>
+
+ <p>
+ <strong><a href="http://registro.gnome.cl/">No te olvides de inscribirte para ayudarnos con la planificación</a></strong>, recuerda que si se llena el auditorio los inscritos tendrán preferencia.
+ </p>
+
+ <p>
+ ¡Y no te olvides de seguirnos en Facebook y <a href="http://twitter.com/diagnome">Twitter</a>!
+ </p>
+
+ <p>
+ <a href="http://www.facebook.com/group.php?gid=147294960046" class="facebook">
+ Sigue lo último sobre el DÃa GNOME en Facebook
+ </a>
+ </p>
+
+ <br style="clear: left;" /><br/>
+
+ <table id="rounded-corner" summary="Programa Dia GNOME" cellspacing="0">
+ <tbody>
+ <tr>
+ <td>09:00</td>
+ <td><strong>¡Registro y bienvenida al DÃa GNOME!</strong></td>
+ </tr>
+ <tr>
+ <td>09:30</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>09:50</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>10:25</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>10:55</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>11:15</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td class="break">11:40-11:50</td>
+ <td class="break">Receso</td>
+ </tr>
+ <tr>
+ <td>11:50</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>12:10</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td class="break">13:00-14:00</td>
+ <td class="break">Almuerzo</td>
+ </tr>
+ <tr>
+ <td>14:20</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td class="break">15:15-15:25</td>
+ <td class="break">Receso</td>
+ </tr>
+ <tr>
+ <td>15:25</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>16:00</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td class="break">16:35-16:45</td>
+ <td class="break">Receso</td>
+ </tr>
+ <tr>
+ <td>16:45</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>17:30</td>
+ <td>Tema a definir <small>(expositor a definir)</small></td>
+ </tr>
+ <tr>
+ <td>18:45</td>
+ <td><strong>Cierre DÃa GNOME</strong></td>
+ </tr>
+ </tbody>
+ </table>
+
+ </div>
+
+ <div class="grid_1">
+ <div style="margin-top: 30px;"><img src="header.png" alt="" width="430" /></div>
+ <h1>Cómo llegar</h1>
+
+ <p>El DÃa GNOME se realizara en el Salón T de la UTFSM, puedes <a href="mapa-diagnome.png">ver un mapa más detallado</a> de la ubicación del auditorio dentro de la universidad.</p>
+
+ <p><iframe width="100%" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15&output=embed"></iframe><br /><small>Ver <a href="http://maps.google.com/maps/ms?source=embed&hl=en&geocode=&view=map&ie=UTF8&t=h&msa=0&msid=113135296348126613369.000474fcb3b8972334458&ll=-33.034535,-71.597214&spn=0.008994,0.01502&z=15" style="color:#0000FF;text-align:left">DÃa GNOME</a> en un mapa más grande</small></p>
+ </div>
+ </div>
+
+ <br style="clear: left;" />
+
+ <div id="footer">
+ <div class="container_2">
+ <div class="grid_2">
+ Copyright © 2009 The GNOME Project.<br />
+ Diseño por Andreas Nilsson, Diego Escalante Urrelo, Pedro Villavicencio Garrido y Vinicius Depizzol.
+ </div>
+ </div>
+ </div>
+</body>
+</html>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]