angular.js/docs/src/templates/index.html

76 lines
2.9 KiB
HTML
Raw Normal View History

2010-11-29 19:13:08 +00:00
<!doctype html>
<html xmlns:ng="http://angularjs.org/"
xmlns:doc="http://docs.angularjs.org/"
ng:controller="DocsController">
<head>
2011-05-11 00:01:01 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2011-02-01 18:01:02 +00:00
<title ng:bind-template="&lt;angular/&gt;: {{partialTitle}}">&lt;angular/&gt;</title>
<meta name="fragment" content="!">
2011-05-10 18:16:00 +00:00
<link rel="stylesheet" href="docs-combined.css" type="text/css"/>
<link rel="stylesheet" href="syntaxhighlighter/syntaxhighlighter-combined.css" type="text/css"/>
<script>
// GA asynchronous tracker
var _gaq = _gaq || [];
2011-06-02 15:40:26 +00:00
_gaq.push(['_setAccount', 'UA-8594346-3']);
_gaq.push(['_setDomainName', '.angularjs.org']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
2011-05-11 00:01:01 +00:00
2011-06-02 15:40:26 +00:00
<body>
<div id="container">
2011-05-11 00:01:01 +00:00
2011-06-02 15:40:26 +00:00
<!--[if lt IE 9]>
<div id="oldIePrompt">
You are using an old version of Internet Explorer.
For better and safer browsing experience please <a href="http://www.microsoft.com/IE9">upgrade IE</a>
or install <a href="http://google.com/chrome">Google Chrome browser</a>.
2011-05-11 00:01:01 +00:00
</div>
2011-06-02 15:40:26 +00:00
<![endif]-->
<ul id="navbar">
<li><a href="http://angularjs.org/">&lt;angular/&gt;</a></li>
<li><a href="#!/guide" ng:class="selectedSection('guide')">Developer Guide</a></li>
<li><a href="#!/api" ng:class="selectedSection('api')">API Reference</a></li>
<li><a href="#!/cookbook" ng:class="selectedSection('cookbook')">Examples</a></li>
<li><a href="#!/misc/started" ng:class="selectedSection('misc')">Getting Started</a></li>
<li><a href="#!/tutorial" ng:class="selectedSection('tutorial')">Tutorial</a></li>
2011-06-02 15:40:26 +00:00
</ul>
<div id="sidebar">
<input type="text" name="search" id="search-box" placeholder="search the docs"
tabindex="1" accesskey="s">
<ul id="content-list">
<li ng:repeat="page in pages.$filter(search)" ng:class="getClass(page)">
<a href="{{getUrl(page)}}" ng:class="selectedPartial(page)"
ng:bind="page.shortName"
tabindex="2"></a>
</li>
</ul>
2011-05-11 00:01:01 +00:00
</div>
2011-06-02 15:40:26 +00:00
<div id="content-panel">
<h2 ng:bind="partialTitle"></h2>
<a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a>
<ng:include id="content" src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include>
2011-05-11 00:01:01 +00:00
</div>
2011-06-02 15:40:26 +00:00
<div id="footer">© 2010-2011 angular</div>
2010-11-10 18:09:48 +00:00
</div>
<script src="jquery.min.js"></script>
<script src="syntaxhighlighter/syntaxhighlighter-combined.js"></script>
<script src="../angular.min.js" ng:autobind></script>
<script src="docs-combined.js"></script>
<script src="docs-keywords.js"></script>
</body>
2010-11-10 18:09:48 +00:00
</html>