source: admin/WebConsole/principal/acercade.php @ c21abbc

Last change on this file since c21abbc was 1602040, checked in by ramon <ramongomez@…>, 11 years ago

Versión 1.0.5, #616: Integrar código de la versión 1.0.5 en rama principal.

git-svn-id: https://opengnsys.es/svn/trunk@4309 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<?php
2//********************************************************************
3// Descripción :
4//              Pagina de informacion sobre el proyecto OpenGnSys
5//********************************************************************
6include_once("../includes/ctrlacc.php");
7include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php");
8
9?>
10<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
11<html>
12<head>
13<title> Administración web de aulas </title>
14<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
15<link rel="stylesheet" type="text/css" href="../estilos.css" />
16</head>
17
18<body class="acercade">
19
20<img alt="*" src="../images/acercade.png" align="left" hspace="10em" vspace="10em" />
21
22<h1><img alt="OpenGnSys" src="../images/iconos/logoopengnsys.png" /></h1>
23
24<p>
25<?php
26// Añadir versión.
27$versionfile="../../doc/VERSION.txt";
28if (file_exists ($versionfile))
29        include ($versionfile);
30
31?>
32</p>
33
34
35<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p>
36
37<p><?php echo $TbMsg["DESCRIPTION"] ?> </p>
38
39<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>
40
41<p><strong><?php echo $TbMsg["LINK"] ?> <a href="http://opengnsys.es"  target="_blank" >opengnsys.es</a><strong></p>
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.