diff options
author | Daniel Baumann <daniel@debian.org> | 2010-03-07 11:49:29 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:04 +0100 |
commit | 8be5f9d036bad60cf9ad7169c3e7c356aeba55b6 (patch) | |
tree | 8b40ea5ad0eff4c827c6bf1cb91196d2ddf302ef /templates/cgi/debian-unofficial/header.html | |
parent | 099710cbc317afa3888509ee8b09d4d403ddf72f (diff) | |
download | vyos-live-build-8be5f9d036bad60cf9ad7169c3e7c356aeba55b6.tar.gz vyos-live-build-8be5f9d036bad60cf9ad7169c3e7c356aeba55b6.zip |
Merging live-webhelper.
Diffstat (limited to 'templates/cgi/debian-unofficial/header.html')
-rw-r--r-- | templates/cgi/debian-unofficial/header.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/cgi/debian-unofficial/header.html b/templates/cgi/debian-unofficial/header.html new file mode 100644 index 000000000..d52efa69e --- /dev/null +++ b/templates/cgi/debian-unofficial/header.html @@ -0,0 +1,43 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> +<html> + <head> + <title>Debian Live Webhelper</title> + <link rel="icon" href="http://debian-live.alioth.debian.org/favicon.ico" type="image/ico"> + <link rel="stylesheet" type="text/css" href="http://debian-live.alioth.debian.org/images/style.css" /> + <meta http-equiv="content-type" content="text/html; charset=iso-8859-15"> + <meta name="keywords" content="Debian, Live, Project"> + <meta name="description" content="The Debian Live Project"> + + <style type="text/css"> + label { cursor:pointer; } + </style> + + <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 id="header"> + <div id="debianlogo"><img src="http://debian-live.alioth.debian.org/images/debian.png" alt="Debian logo" width="56" height="70"></div> + <div id="headertitle"><a href="http://debian-live.alioth.debian.org/" title="http://debian-live.alioth.debian.org/">Debian Live</a></div> + <div id="headersubtitle">Live Debian systems!</div> +</div> + +<div id="maincontent" style="margin: 0 0 0 0;"> + <h1>This is webhelper of the <a href="http://debian-live.alioth.debian.org/">Debian Live</a> project.</h1> +</div> |