body, html {
background: #fff;
font-family: "PT Sans Web","Trebuchet MS",Arial,Helvetica,sans-serif;
width: 100%;
---> height: 100%;
line-height: 22px;
color: #333;
}
.page {
min-height: 100%;
height: auto!important;
height: 100%;
position: relative;
overflow: hidden;
min-width: 980px;
}
<ol>
<?php foreach (glob("*.html") as $page): ?>
<li>
<a href="<?php echo $page ?>">
<?php echo $page; ?>
</a>
</li>
<?php endforeach; ?>
</ol>
@echo off
call :start > list.html
:start
echo ^<ol^>
for %%f in (*.html) do echo ^<li^>^<a href^="%%~nxf"^>%%~nxf^</a^>^</li^>
echo ^</ol^>