Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 189 → Rev 183

/website/index-repo.php
File deleted
/website/index-main.php
1,11 → 1,6
<h1>SvarDOS - an open-source DOS distribution</h1>
<p class="copyr">brought to you by <a href="http://mateusz.viste.fr/" class="mateusz">Mateusz Viste</a></p>
 
<div style="margin: 2em auto; width: 20em; border: 1px #777 solid; background-color: #fff; padding: 0.5em;">
<p style="text-align: center; font-size: 1.5em; margin: 1.5em auto;">WORK IN PROGRESS</p>
<p style="font-size: 1.2em;">This project is in a work-in-progress phase, nothing works yet. Please come back later!</p>
</div>
 
<p>SvarDOS is a <a href="?p=tech&amp;art=licensing">free</a>, <a href="?p=nls">multilingual</a> DOS distribution that uses the FreeDOS kernel. It's released in the form of a bootable CD image (ISO) that contains the "core" operating system, as well as a variety of third-party packages.<br>
SvarDOS is a "rolling release", meaning that it doesn't follow the concept of "versions". SvarDOS can be kept up-to-date trough its online update tool.</p>
 
/website/index-tech.php
28,12 → 28,11
 
<h1>SvarDOS technical notes</h1>
<p class="copyr">no documentation is perfect, this one's no exception</p>
<table style="margin: 0 auto;">
 
<table>
 
<?php
foreach ($arts as $file=>$title) {
echo "<tr><td><a href=\"?p=tech&art={$file}\">" . htmlentities($title) . "</a></td></tr>\n";
echo "<tr><td><a href=\"?p=tech&art={$file}\">" . htmlentities($title) . "</a></td></tr>";
}
?>
 
/website/index.php
10,7 → 10,7
</head>
<body>
 
<p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why SvarDOS</a> I <a href="?p=repo">Repo</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
<p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why SvarDOS</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
 
<?php
 
23,12 → 23,11
include 'index-tech.php';
} else if ($p == 'nls') {
readfile('index-nls.htm');
} else if ($p == 'repo') {
include 'index-repo.php';
} else if ($p == 'test') {
include 'index-main.php';
} else { // else display the front page
include 'index-main.php';
//include 'index-main.php';
include 'wip.htm';
}
?>
</body>
/website/style.css
80,25 → 80,6
color: inherit; text-decoration: none;
}
 
table {
margin: 1em auto;
border-spacing: 0;
border-collapse: collapse;
text-align: left;
}
 
table th {
text-weight: 600;
}
 
table :not(thead) tr:nth-child(odd) {
background-color: #f5f5f5;
}
 
table thead tr {
border-bottom: 1px #bbb solid;
}
 
table.nls {
margin: 1em auto;
border-spacing: 0;
/website/wip.htm
0,0 → 1,7
<div style="margin: 2em auto; width: 20em; border: 1px #777 solid; background-color: #fff; padding: 0.5em;">
 
<p style="text-align: center; font-size: 1.5em; margin: 1.5em auto;">WORK IN PROGRESS</p>
 
<p style="font-size: 1.2em;">This project is in a work-in-progress phase. Please come back later!</p>
 
</div>