blob: f99a5daa47eb03b6e3c697d856ece58fcfa17067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
//********************************************************************
// Descripción :
// Pagina de informacion sobre el proyecto OpenGnsys
//********************************************************************
include_once("../includes/ctrlacc.php");
include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> Administración web de aulas </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<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" />
<h1><img alt="OpenGnsys" src="../images/iconos/logoopengnsys.png" /></h1>
<p>
<?php
// Añadir versión.
$versionfile="../../doc/VERSION.txt";
if (file_exists ($versionfile))
include ($versionfile);
?>
</p>
<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p>
<p><?php echo $TbMsg["DESCRIPTION"] ?> </p>
<p><?php echo $TbMsg["LICENSE"] ?> <a href="https://www.gnu.org/licenses/gpl.html" target="_blank" ><img alt="GPL v3" src="../images/gplv3-88x31.png" height="20em" /></a></p>
</body>
</html>
|