blob: c817281dbf65923d54d6a04ad07fdf3dd2e1d817 (
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
|
<?php
$roadmap = array(
'en' => 'Roadmap',
'et' => 'Ajakava'
);
?>
<ul id="rightnow">
<li>Alpha 2 is now available!
<?php
echo <<<H
<a href="/{$locale}/alpha/">Get it</a>, test it and send us your feedback!
H;
?>
</li>
<li>Beta 1 in the works</li>
<li>We will attend <a href="http://www.solutionslinux.fr/preinscription.html?code=partenariat">Solutions Linux</a>
in Paris<br />
<a href="http://www.solutionslinux.fr/preinscription.html?code=partenariat">
<img src="http://www.solutionslinux.fr/upload/image/
Solutions%20Linux%202011/Kit%20M%C3%A9dia/Logo%20Linux%202011.gif" title="Solutions Linux, 10-11-12 mai 2011" /></a></li>
</ul>
<p><a href="http://mageia.org/wiki/doku.php?id=roadmap">Roadmap</a></p>
|