Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Work in progress on using perl6.org design for docs
Unfortunately I can't go much further without making Pod::To::HTML more flexible. Right now it hard-codes too much HTML.
- Loading branch information
Showing
3 changed files
with
63 additions
and
44 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 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 |
|---|---|---|
| @@ -1,6 +1,10 @@ | ||
| <meta name=viewport content="width=device-width, initial-scale=1"> | ||
| <link rel="icon" href="/favicon.ico" type="image/x-icon" /> | ||
| <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" title="default" /> | ||
|
|
||
| <link rel="stylesheet" type="text/css" href="http://perl6.org/bootstrap/css/bootstrap.min.css"> | ||
| <link rel="stylesheet" type="text/css" href="http://perl6.org/bootstrap/css/bootstrap-theme.min.css"> | ||
| <link rel="stylesheet" type="text/css" href="http://perl6.org/style.css"> | ||
|
|
||
| <link type="text/css" href="/css/custom-theme/jquery-ui.css" rel="stylesheet" /> | ||
| <link type="text/css" href="/css/pygments.css" rel="stylesheet" /> | ||
| <noscript> <style> #search { visibility: hidden; } </style> </noscript> |
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 |
|---|---|---|
| @@ -1,14 +1,27 @@ | ||
| <div id="header" class="pretty-box green"> | ||
| <a href="/" | ||
| ><img src="/images/camelia-small.png" alt="Camelia" id="logo" | ||
| > Perl 6 Documentation</a | ||
| > | ||
| <div id="search" class="ui-widget"> | ||
| <div class="green"><input placeholder="Search" autofocus id="query" title="Enter Perl 6 document to search for"></div> | ||
| <nav class="navbar navbar-fixed-top navbar-inverse"> | ||
| <div class="container"> | ||
| <div class="navbar-header"> | ||
| <button type="button" class="navbar-toggle collapsed" | ||
| data-toggle="collapse" data-target="#navbar" | ||
| aria-expanded="false" aria-controls="navbar"> | ||
| <span class="sr-only">Toggle navigation</span> | ||
| <span class="icon-bar"></span> | ||
| <span class="icon-bar"></span> | ||
| <span class="icon-bar"></span> | ||
| </button> | ||
| </div> | ||
| <div class="menu"> | ||
| MENU | ||
| <div id="navbar" class="collapse navbar-collapse"> | ||
| <ul class="nav navbar-nav"> | ||
| <li id="nav-home"><a href="/">Home</a></li> | ||
| <li id="nav-language"><a href="/language.html">Language</a></li> | ||
| <li id="nav-types" class="active"><a href="/types.html">Types</a></li> | ||
| <li id="nav-routines"><a href="/routines.html">Routines</a></li> | ||
| </ul> | ||
| <form class="navbar-form navbar-right" role="search"> | ||
| <div class="form-group"> | ||
| <input type="text" class="form-control" placeholder="Search" id="query" title="Enter Perl 6 document to search for" autofocus> | ||
| </div> | ||
| </form> | ||
| </div> | ||
| </div> | ||
| <div id="content-wrapper"> | ||
| <div id="content" class="pretty-box yellow"> | ||
| </div> | ||
| </nav> |