blob: 5ea7bfc9a91251a5f8b24a8d85c0817113b7154b (
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
42
43
44
45
|
<?php
define('HLANG', true);
require '../../langs.php';
$dictionary = read_translation_file($locale, 'documentation');
require 'doc.php';
?><!DOCTYPE html>
<html lang="<?php echo $locale; ?>" dir="ltr">
<head>
<meta charset="utf-8">
<title><?php _g('Mageia Documentation\'s Archive')?></title>
<meta name="description" content="<?php _g('Documentation for previous releases of Mageia distribution and its tools.')?>">
<meta name="keywords" content="<?php _g('doc,documentation,help,guide,installer,installation,mageia,linux')?>">
<link rel="stylesheet" href="/g/style/all.css" type="text/css">
<?php include '../../analytics.php'; ?>
</head>
<body class="doc">
<?php echo $hsnav; ?>
<h1 id="mgnavt"><?php _g('Mageia Documentation\'s Archive')?></h1>
<div id="doc" class="yui-t7">
<div id="bd" role="main">
<div class="yui-g">
<div class="para donate" style="padding-top: 2em;">
<h2><?php _g('Some More documentation')?></h2>
<p><?php _g('Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life.')?><br/>
<?php _g('If you are looking for the current versions, see <a href="index.php">here</a>.')?></p>
<hr>
<h3>Mageia 2</h3>
<div style="float: left; margin: 2em;">
<p><?php
doc_list(_r('Installer'), 'installer', 2, '<a href="//doc.mageia.org/installer/2/%s/content/index.html">HTML</a>');
?></p>
</div>
</div>
</div>
</div>
</div>
<div style="margin-left: 2em;">
<hr>
<p><a href="//www.mageia.org/<?php echo $locale; ?>/map/"><?php _g('Mageia sitemap')?></a>
| <a href="//www.mageia.org/<?php echo $locale; ?>/support/"><?php _g('Support')?></a></p>
</div>
</body>
</html>
|