diff options
| author | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-24 15:53:22 +0000 |
|---|---|---|
| committer | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-24 15:53:22 +0000 |
| commit | 4f48e5f82280a06f10134c34a2e4d217c3b8ce7c (patch) | |
| tree | a80866ca94211e75dcc052e98fc0dbbf9f0331d5 /chrome/common/extensions/docs/helloworld.html | |
| parent | d2d808639adbe59b8ea045a92ace5a5a7ec0eca8 (diff) | |
| download | chromium_src-4f48e5f82280a06f10134c34a2e4d217c3b8ce7c.zip chromium_src-4f48e5f82280a06f10134c34a2e4d217c3b8ce7c.tar.gz chromium_src-4f48e5f82280a06f10134c34a2e4d217c3b8ce7c.tar.bz2 | |
Placeholders for major doc pages. Also a few minor doc fixes.
TESTS=none
BUGS=none
Review URL: http://codereview.chromium.org/159309
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21530 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/helloworld.html')
| -rwxr-xr-x | chrome/common/extensions/docs/helloworld.html | 79 |
1 files changed, 61 insertions, 18 deletions
diff --git a/chrome/common/extensions/docs/helloworld.html b/chrome/common/extensions/docs/helloworld.html index 61db8f3..af5471c 100755 --- a/chrome/common/extensions/docs/helloworld.html +++ b/chrome/common/extensions/docs/helloworld.html @@ -1,32 +1,66 @@ -<!DOCTYPE HTML> -<html> -<head> -<meta charset="utf-8"> -<title>Extensions: Hello, World</title> -<link href="stylesheet.css" rel="stylesheet" type="text/css"> +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>Extensions: Getting Started</title> + <link href="css/ApiRefStyles.css" rel="stylesheet" type="text/css"> </head> - <body> -<h1>Hello, World</h1> - -<p> -This tutorial walks you through creating a simple extension. -To complete this tutorial, you must have Windows; -Linux and Mac don't yet support extensions. -</p> -<h4> Contents </h4> + <div id="container"> + <a name="top"> </a> -<ul> + <!-- API HEADER --> + <div id="pageHeader"> + <!-- BREADCRUMB --> + <!-- TODO: Fix these hrefs --> + <div id="breadcrumbs"> + <a href="./index.html">Google Chrome Extensions</a> > + <a href="devguide.html">Developer's Guide</a> > + Get Started (Hello, World!) + </div> + <div id="pageTitle"> + <h1>Get Started (Hello, World!) + </div> + </div> <!-- /pageHeader --> + + <div id="pageContent"> + <!-- SIDENAV --> + <div id="leftNav"> + <ul> + <li> Overview </li> + <li> Get Started </li> + <li> Developer's Guide </li> + <li> Reference + <ul> + <li> chrome.* APIs + </li> + </ul> + </li> + </ul> + </div> + + <div id="mainColumn"> + <!-- TABLE OF CONTENTS --> + <div id="toc"> + <p>Contents</p> +<ol> <li> <a href="#browser">Get your browser ready</a> </li> <li> <a href="#load">Create and load an extension</a> </li> <li> <a href="#code">Add code to the extension</a> </li> <li> <a href="#debug">Debug the extension</a> </li> <li> <a href="#summary">Summary</a> </li> -</ul> +</ol> + </div> + <!-- /TABLE OF CONTENTS --> + + + <!-- CONTENT --> <p> -[PENDING: automate the TOC; add navigation links to other pages] +This tutorial walks you through creating a simple extension. +To complete this tutorial, you must have Windows; +Linux and Mac don't yet support extensions. </p> <h2 id="browser">Get your browser ready</h2> @@ -299,5 +333,14 @@ what else we would've done if this were a real extension (e.g. package it), and where to find more information. Suggest where to go next.]</p> + + </div> <!-- /mainColumn --> + </div> <!-- /pageContent --> + <div id="pageFooter" --> + Copyright 2009 + <br /> + TBD: copyright/license should be automatically included here + </div> <!-- /pageFooter --> + </div> <!-- /container --> </body> </html> |
