-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdefault.html
More file actions
107 lines (100 loc) · 4.64 KB
/
default.html
File metadata and controls
107 lines (100 loc) · 4.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% if page.title %} {{ page.title }} | {% endif %} {{site.title}}</title>
<!--[if IE]>
<script src="/js/html5.js" />
<![endif]-->
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" media="screen, projection" charset="utf-8" href="/css/screen.css" />
<link rel="stylesheet" type="text/css" media="screen, projection" charset="utf-8" href="/css/pygments.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml" />
</head>
<body>
<a href="http://github.com/couchrest/couchrest.github.com"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/abad93f42020b733148435e2cd92ce15c542d320/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub"></a>
<div id="wrap" class="container_12">
<header class="grid_12 alpha omega">
{% if site.title %}
<h1><a href="{{site.url}}">CouchRest and CouchRest Model</a></h1>
{% endif %}
</header>
<div class="clear"></div>
<nav class="grid_3 alpha">
<h1>Menu</h1>
<ul>
<li><a href="/">Introduction</a></li>
<li>
<a href="/couchrest/index.html">CouchRest</a>
<br />
<ul>
<li><a href="/couchrest/servers.html">Servers</a></li>
<li><a href="/couchrest/databases.html">Databases</a></li>
<li><a href="/couchrest/designs.html">Designs</a></li>
<li><a href="/couchrest/rest_api.html">Rest API</a></li>
</ul>
</li>
<li>
<a href="/model/index.html">CouchRest Model</a>
<br />
<ul>
<li><a href="/model/rails.html">Start with Rails</a></li>
<li><a href="/model/definition.html">Defining a model</a></li>
<li><a href="/model/properties.html">Properties</a></li>
<li><a href="/model/persistence.html">Persistence</a></li>
<li><a href="/model/querying.html">Querying</a></li>
<li><a href="/model/embedding.html">Embedding</a></li>
<li><a href="/model/dirty_tracking.html">Dirty Tracking</a></li>
<li><a href="/model/associations.html">Associations</a></li>
<li><a href="/model/validations.html">Validations</a></li>
<li><a href="/model/callbacks.html">Callbacks</a></li>
<li><a href="/model/designs.html">Designs</a></li>
<li><a href="/model/view_objects.html">View Objects</a></li>
<li><a href="/model/proxying.html">Proxying</a></li>
<li><a href="/model/configuring.html">Configuring</a></li>
</ul>
</li>
</ul>
</nav>
<section class="grid_8 alpha omega">
{{ content }}
{% if page.no_comments != true and page.id != empty %}
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'couchrest';
// The following are highly recommended additional parameters. Remove the slashes in front to use.
var disqus_identifier = '{{ page.id }}';
// var disqus_url = 'http://example.com/permalink-to-page.html';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
{% endif %}
</section>
<div class="clear"></div>
<footer>
<div class="grid_4 alpha">
<p>
<a href="http://github.com/couchrest/couchrest">couchrest on github</a><br />
<a href="http://github.com/couchrest/couchrest_model">couchrest model on github</a>
</p>
</div>
<div class="grid_4">
</div>
<div class="grid_4 omega">
<!--
<a href="{{site.url}}/atom.xml" class="noul">
<img src="/images/rss.png" alt="Subscribe to RSS Feed" />
</a>
-->
</div>
</footer>
<div class="clear"></div>
</div><!-- .container_12 -->
</body>
</html>