-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combine the docs into a single template/formatter
- Loading branch information
Showing
9 changed files
with
92 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title><%= h @options.title %></title> | ||
<link rel="stylesheet" href="rdoc.css" type="text/css" media="screen" /> | ||
<script src="js/jquery.js" type="text/javascript"></script> | ||
<script src="js/camping.js" type="text/javascript"></script> | ||
</head> | ||
<body> | ||
<div id="menu"> | ||
<ul id="links"> | ||
<li><a href="book.html">book</a> | </li> | ||
<li><a href="api.html">reference</a> | </li> | ||
<li><a href="http://wiki.github.com/why/camping">wiki</a> | </li> | ||
<li><a href="http://github.com/why/camping">code</a></li> | ||
</ul> | ||
<p id="version">Camping <%= VERS %></p> | ||
</div> | ||
|
||
<div id="fullpage"> | ||
<div class="page_shade"> | ||
<div class="page"> | ||
<p class="header"><%= Time.now %></p> | ||
<h1><%= h @options.title %></h1> | ||
<img src="images/Camping.gif" alt="The Camping Badge" id="logo"> | ||
<%= @files.find { |f| f.full_name == @options.main_page }.description.sub(%r{^\s*<h1.*?/h1>}i, '') %> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters