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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?php
define('HLANG', true);
define('ALIGNMENT', 'Center');
require '../../langs.php';
$dictionary = read_translation_file($locale, array('documentation', 'common_footer'));
require 'doc.php';
?><!DOCTYPE html>
<html lang="<?php echo $locale; ?>" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php _g('Mageia Documentation')?></title>
<meta name="description" content="<?php _g('Documentation for 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">
<link rel="stylesheet" type="text/css" href="/g/style/common_footer.css">
<?php include '../../analytics.php'; ?>
<style>
#flex-container {
display: flex;
flex-wrap:wrap;
}
#flex-item {
flex: 1 150px;
margin: 1em; width: 24em;
}
.dlt2 thead th, .dlt2 th.h {
color: #aaa;
font-size: 100%;
}
@media (max-width: 750px) {
#doc6 { width:100%; }
tbody { display: none; }
}
@media (min-width: 750px) {
tbody { display: none; }
}
</style>
</head>
<body class="doc">
<?php echo $hsnav; ?>
<h1 id="mgnavt"><?php _g('Mageia Documentation')?></h1>
<div id="doc6" class="yui-t7" style="margin-bottom: 0px; max-width: 950px;">
<div id="bd" role="main">
<div class="yui-g">
<div class="para donate" style="padding-top: 2em;">
<h2><?php _g('Find your documentation')?></h2>
<p><?php _g('Select the manual, the release of Mageia and the language you want to see.')?><br/>
<?php _g('Documentation of old versions are available in the <a href="archive.php">archive page</a>.')?></p>
<p><?php _g('Those manuals are the result of common work of <a href="https://wiki.mageia.org/en/Documentation_team">documentation</a> and <a href="https://wiki.mageia.org/en/Internationalisation_Team_(i18n)">translation</a> teams.')?><br/>
<?php _g('Feel free to help us improving it!')?></p>
<?php _g('Documentation built using the <a href="%s">Calenco tool from NeoDoc</a>.', 'http://www.neodoc.biz/', 'p')?>
<hr>
<h3>Mageia 5</h3>
<div id="flex-container">
<div id="flex-item">
<?php doc_list(_r('Installer'), 'installer', 5); ?>
</div>
<div id="flex-item">
<?php doc_list(_r('Control Center'), 'control_center', 5); ?>
</div>
<div id="flex-item">
<?php doc_list(_r('Installation from LIVE medium'), 'draklive', 5); ?>
</div>
</div><!--flex-container-->
</div>
</div>
</div>
</div>
<?php echo common_footer($locale); ?>
<script type="text/javascript">
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
</script>
</body>
</html>
|