blob: 383e2abd6ce35368868714be49cadd64820fcbe2 (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Live Systems Project">
<meta name="author" content="Live Systems Project <debian-live@lists.debian.org>">
<!-- <meta name="keywords" content="Live Systems, free software, open source software, Debian, GNU, Linux"> -->
<link rel="shortcut icon" href="http://live-systems.org/images/logo-32.png">
<title>Live Systems Project</title>
<!-- Bootstrap core CSS -->
<link href="http://live-systems.org/stuff/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="http://live-systems.org/stuff/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="http://live-systems.org/stuff/bootstrap/navbar.css" rel="stylesheet">
<link href="http://live-systems.org/stuff/bootstrap/label.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://live-systems.org/stuff/html5shiv/html5shiv.min.js"></script>
<script src="http://live-systems.org/stuff/respond/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" language="JavaScript">
function collapse(x, txt) {
var oTemp=document.getElementById("text_"+x);
var oClick=document.getElementById("click_"+x);
if (oTemp.style.display=="block") {
oTemp.style.display="none";
oClick.innerHTML=txt+" <small>(click to expand)<\/small><br \/>";
}
else {
oTemp.style.display="block";
oClick.innerHTML=txt+" <small>(click to collapse)<\/small><br \/>";
}
}
</script>
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><strong>Live</strong> Systems</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="/">Build</a></li>
<li><a href="http://live-systems.org/">WWW</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
|