diff options
author | ramon <ramongomez@us.es> | 2013-06-12 12:21:53 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2013-06-12 12:21:53 +0000 |
commit | ae938ede4903ba0e442c3bb3fbb0ed66e22dea6b (patch) | |
tree | 03ac3c73fbfb7a16254e1812480825b052c66587 | |
parent | 11e250179ff2ee15bf60d15834ab9eeb4bbe6176 (diff) |
#549: Usar logo del proyecto en la cabecera; limpieza código HTML y PHP.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@3870 a21b9725-9963-47de-94b9-378ad31fedc9
-rw-r--r-- | admin/WebConsole/estilos.css | 3 | ||||
-rw-r--r-- | admin/WebConsole/principal/acercade.php | 22 |
2 files changed, 16 insertions, 9 deletions
diff --git a/admin/WebConsole/estilos.css b/admin/WebConsole/estilos.css index 6e60d6a9..98fa73f3 100644 --- a/admin/WebConsole/estilos.css +++ b/admin/WebConsole/estilos.css @@ -55,6 +55,9 @@ .pie span { float: right; } +.acercade { + font-family: sans-serif; +} .textos{
COLOR: #A53B2D;
FONT-FAMILY:MS Sans Serif;
diff --git a/admin/WebConsole/principal/acercade.php b/admin/WebConsole/principal/acercade.php index db88fc9a..09df2b9d 100644 --- a/admin/WebConsole/principal/acercade.php +++ b/admin/WebConsole/principal/acercade.php @@ -1,7 +1,7 @@ -<? +<?php //******************************************************************** // Descripción : -// Pagina de informacion sobre el proyecto opengnsys +// Pagina de informacion sobre el proyecto OpenGnSys //******************************************************************** include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php"); @@ -11,10 +11,14 @@ include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php"); <head> <title> Administración web de aulas </title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> -<body> +<link rel="stylesheet" type="text/css" href="../estilos.css" /> +</head> + +<body class="acercade"> + +<img alt="*" src="../images/acercade.png" align="left" hspace="10em" vspace="10em" /> -<img alt="logo_opengnsys" src="../images/acercade.png" align="left" hspace="10em" vspace="10em"> -<h1>OpenGnSys</h1> +<h1><img alt="OpenGnSys" src="../images/iconos/logoopengnsys.png" /></h1> <p> <?php @@ -27,12 +31,12 @@ if (file_exists ($versionfile)) </p> -<p><strong><? echo $TbMsg["TITLE"] ?></strong></p> +<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p> -<p><? echo $TbMsg["DESCRIPTION"] ?> </p> +<p><?php echo $TbMsg["DESCRIPTION"] ?> </p> -<p><? echo $TbMsg["LICENSE"] ?> <a href="http://www.gnu.org/licenses/gpl.html" target="_blank" ><img alt="GPL v3" src="../images/gplv3-88x31.png" height="20em" ></a></p> +<p><?php echo $TbMsg["LICENSE"] ?> <a href="http://www.gnu.org/licenses/gpl.html" target="_blank" ><img alt="GPL v3" src="../images/gplv3-88x31.png" height="20em" /></a></p> -<p><strong><? echo $TbMsg["LINK"] ?> <a href="http://opengnsys.es" target="_blank" > opengnsys.es</a><strong></p> +<p><strong><?php echo $TbMsg["LINK"] ?> <a href="http://opengnsys.es" target="_blank" >opengnsys.es</a><strong></p> </body> </html> |