blob: 3dc8021ed965f02f495510fc88df3111e4109c70 (
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
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
|
<?php
$locale = explode('/', $_SERVER['REQUEST_URI']);
$locale = $locale[1];
require 'locales.php';
if (!array_key_exists($locale, $_t)) {
$locale = 'en';
}
$_t = $_t[$locale];
?>
<!DOCTYPE html>
<html dir="ltr" lang="<?php echo $locale; ?>">
<head>
<meta charset="utf-8">
<title><?php echo $_t['1_title']; ?></title>
<meta name="description" content="<?php echo $_t['1_desc']; ?>">
<meta name="keywords" content="<?php echo $_t['1_kw']; ?>">
<meta name="DC.date" content="2010-06-01" scheme="DCTERMS.W3CDTF">
<link rel="canonical" href="/<?php echo $locale; ?>/1/">
<link rel="stylesheet" href="/g/style/all.css">
<?php include '../../analytics.php'; ?>
</head>
<body class="release">
<?php include '../../langs.php'; ?>
<div id="doc" class="yui-t7">
<div id="hd" role="banner"><h1><a id="logo" href="/"><span>Mageia</span></a> <span class="lsep">|</span> <span class="subh">1</span></h1></div>
<?php include 'nav.php'; ?>
<div id="bd" role="main">
<div class="yui-g bb1">
<div class="para">
<img src="/g/1/screenshots/opt-mageia-450.jpg" alt="<?php echo $_t['img_desktop']; ?>" class="rel-desktop-home rel-home1">
<h2 class="download-btn"><a href="/downloads/"><?php echo $_t['download_it']; ?></a></h2>
<p><?php echo $_t['mageia_is']; ?></p>
<h3><?php echo $_t['h3_what_is']; ?></h3>
<p><?php echo $_t['plenty_see_notes']; ?></p>
<div class="clear"></div>
<h3><?php echo $_t['h3_context']; ?></h3>
<p><?php echo $_t['mageia_began']; ?></p>
<p><?php echo $_t['our_work']; ?></p>
<p><?php echo $_t['encourage_you']; ?></p>
<hr>
<p><?php echo $_t['9_months']; ?></p>
<p><?php echo $_t['people']; ?></p>
<p><?php echo $_t['prereleases']; ?></p>
<p><?php echo $_t['servers']; ?></p>
<p><?php echo $_t['languages']; ?></p>
<p><?php echo $_t['distribution']; ?></p>
<p><?php echo $_t['users']; ?></p>
<p><?php echo $_t['in_for_you']; ?></p>
</div>
</div>
<div class="yui-g bb1">
<div class="yui-u first rb1">
</div>
<div class="yui-u">
</div>
</div>
<?php include 'nav.php'; ?>
</div>
</div>
</body>
</html>
|