-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
27 lines (27 loc) · 987 Bytes
/
index.php
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
<html>
<head>
<title>Projeto-Base</title>
<meta charset="utf-8">
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<nav class="span3" style="margin: 25px auto; display: block; float: none">
<div class="page-header">
<h1>Projeto-Base<br>
<small>Páginas disponiveis</small>
</h1>
</div>
<ul class="nav nav-tabs nav-stacked">
<?php
$arquivos = glob('*.{php}', GLOB_BRACE);
foreach ($arquivos as $arq):
echo (strstr($arq, 'inc.') || ($arq == 'index.php')) ? NULL : "<li> <a href='{$arq}' >{$arq}</a></li>";
endforeach;?>
</ul>
</nav>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
</body>
</html>