rdaux 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,102 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title><%= site.title %></title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <meta name="description" content="<%= site.description %>">
8
+ <meta name="author" content="<%= site.author %>">
9
+
10
+ <!-- Le styles -->
11
+ <link href="/css/bootstrap.min.css" rel="stylesheet">
12
+ <link href="/css/pygments.css" rel="stylesheet">
13
+ <link href="/css/bootstrap-responsive.min.css" rel="stylesheet">
14
+
15
+ <style>
16
+ body {
17
+ margin: 20px 0;
18
+ }
19
+ .header {
20
+ }
21
+ .contents {
22
+ }
23
+ .footer {
24
+ }
25
+ .docs-sidenav {
26
+ margin: 30px 0 0;
27
+ padding: 0;
28
+ background-color: #fff;
29
+ }
30
+ .docs-sidenav .nav-list {
31
+ padding-right: 0;
32
+ }
33
+ .docs-sidenav > li > a {
34
+ padding: 8px 14px 8px 14px;
35
+ }
36
+ .docs-sidenav .nav-list > li > a {
37
+ padding: 8px 14px 8px 14px;
38
+ }
39
+ .docs-sidenav .icon-chevron-right {
40
+ float: right;
41
+ margin-top: 2px;
42
+ margin-right: -6px;
43
+ opacity: .25;
44
+ }
45
+ .docs-sidenav > li > a:hover {
46
+ background-color: #f5f5f5;
47
+ }
48
+ .docs-sidenav a:hover .icon-chevron-right {
49
+ opacity: .5;
50
+ }
51
+ .docs-section {
52
+ padding-top: 30px;
53
+ }
54
+ .ditaa {
55
+ padding: 0;
56
+ }
57
+ </style>
58
+
59
+ <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
60
+ <!--[if lt IE 9]>
61
+ <script src="/js/html5shiv.js"></script>
62
+ <![endif]-->
63
+
64
+ <!-- Fav and touch icons -->
65
+ <!-- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/ico/apple-touch-icon-144-precomposed.png">
66
+ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/ico/apple-touch-icon-114-precomposed.png">
67
+ <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/ico/apple-touch-icon-72-precomposed.png">
68
+ <link rel="apple-touch-icon-precomposed" href="/ico/apple-touch-icon-57-precomposed.png">
69
+ <link rel="shortcut icon" href="/ico/favicon.png"> -->
70
+ </head>
71
+
72
+ <body>
73
+ <div class="container-fluid">
74
+
75
+ <header class="header">
76
+ <h1><%= site.title %></h1>
77
+ <p class="lead"><%= site.description %></p>
78
+ </header>
79
+
80
+ <article class="row-fluid contents">
81
+ <nav class="span3 navigation">
82
+ <ul class="nav nav-list docs-sidenav">
83
+ <%= erb(:nav, :locals => { :sections => site.sections, :base => '' }) %>
84
+ </ul>
85
+ </nav>
86
+
87
+ <div class="span9 documentation">
88
+ <%= erb(:docs, :locals => { :sections => site.sections, :base => '' }) %>
89
+ </div>
90
+ </article>
91
+
92
+ <footer class="footer">
93
+ <p class="text-center">Automatically generated with <a href="https://github.com/avalanche123/rdaux">RDaux, beautiful markdown docs</a></p>
94
+ </footer>
95
+
96
+ </div> <!-- /container -->
97
+
98
+ <script src="/js/jquery.min.js"></script>
99
+ <script src="/js/bootstrap.min.js"></script>
100
+
101
+ </body>
102
+ </html>
data/lib/rdaux.rb ADDED
@@ -0,0 +1,2 @@
1
+ module RDaux
2
+ end