зеркало из https://github.com/git/gitscm-old.git
87 строки
3.1 KiB
Plaintext
87 строки
3.1 KiB
Plaintext
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Git - Fast Version Control System</title>
|
|
<meta name="description" content="Home of the Git Version Control System and Friends" />
|
|
<meta name="authors" content="Petr Baudis, Scott Chacon" />
|
|
<meta http-equiv="reply-to" content="schacon@gmail.com" />
|
|
<meta http-equiv="content-language" content="en" />
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
|
<link rel="stylesheet" href="/blueprint/screen.css" type="text/css" media="screen, projection" />
|
|
<link rel="stylesheet" href="/blueprint/print.css" type="text/css" media="print" />
|
|
<!--[if IE]><link rel="stylesheet" href="blueprint/ie.css" type="text/css" media="screen, projection" /><![endif]-->
|
|
<link rel="stylesheet" href="/stylesheets/style.css" type="text/css" media="screen, projection" />
|
|
<script type="text/javascript" src="/javascripts/jquery-1.2.6.min.js"></script>
|
|
<script type="text/javascript" src="/javascripts/jquery.corner.js"></script>
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS"
|
|
href="http://feeds.feedburner.com/GitReleases">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container showgrids">
|
|
|
|
<div class="span-21 navbar">
|
|
<form id="searchbox">
|
|
<div id="toc">
|
|
<ul class="a-<%= @action %>">
|
|
<li id="m-index"><a href="/">Home</a></li>
|
|
<li id="m-about"><a href="/about">About Git</a></li>
|
|
<li id="m-documentation"><a href="/documentation">Documentation</a></li>
|
|
<li id="m-download"><a href="/download">Download</a></li>
|
|
<li id="m-tools"><a href="/tools">Tools & Hosting</a></li>
|
|
<!-- <li id="m-wiki"><a href="http://git.wiki.kernel.org/index.php/Main_Page">Wiki</a></li> -->
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="span-21">
|
|
<br clear="both"/>
|
|
</div>
|
|
|
|
<%= yield %>
|
|
|
|
<div class="span-21">
|
|
<br/><br/>
|
|
</div>
|
|
|
|
<div class="span-21 footer">
|
|
<div class="menu">
|
|
This page is maintained by Scott Chacon as part of the <a href="http://git-scm.com">Git homepage</a>.<br/>
|
|
Please email me at <a href="mailto:schacon@gmail.com">schacon@gmail.com</a>
|
|
with <a href="http://github.com/schacon/gitscm">patches</a>, suggestions and comments.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$('.navbar').corner();
|
|
$('#searchbox').submit(function() {
|
|
term = $('#searchterm').val();
|
|
jQuery.facebox(function() {
|
|
jQuery.get('/page/searchbox?search=' + term, function(data) {
|
|
jQuery.facebox(data)
|
|
})
|
|
})
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
</script>
|
|
<script type="text/javascript">
|
|
var pageTracker = _gat._getTracker("UA-82337-12");
|
|
pageTracker._initData();
|
|
pageTracker._trackPageview();
|
|
</script>
|
|
</body>
|
|
</html>
|