[#168,docs][s]: refactor to new layout with pages in docs.
This commit is contained in:
@@ -30,7 +30,7 @@
|
|||||||
<a class="brand" href="/"><strong>Recline.js</strong> – relax with your data</a>
|
<a class="brand" href="/"><strong>Recline.js</strong> – relax with your data</a>
|
||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
<li>
|
<li>
|
||||||
<a href="library.html">
|
<a href="/docs/library.html">
|
||||||
<i class="icon-book icon-white"></i>
|
<i class="icon-book icon-white"></i>
|
||||||
Documentation
|
Documentation
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
title: Library - Home
|
title: Library - Home
|
||||||
|
root: ../
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="container library">
|
<div class="container library">
|
||||||
@@ -24,19 +25,19 @@ title: Library - Home
|
|||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="well">
|
<div class="well">
|
||||||
<h3>Models</h3>
|
<h3>Models</h3>
|
||||||
<p>Models help you structure your work with data by providing some standard objects such as Dataset and Record – a Dataset being a collection of Records. <a href="library-model.html">More »</a></p>
|
<p>Models help you structure your work with data by providing some standard objects such as Dataset and Record – a Dataset being a collection of Records. <a href="models.html">More »</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="well">
|
<div class="well">
|
||||||
<h3>Backends</h3>
|
<h3>Backends</h3>
|
||||||
<p>Backends connect your Models to data sources (and stores) – for example Google Docs spreadsheets, local CSV files, the DataHub, ElasticSearch etc. <a href="example-backends.html">More »</a></p>
|
<p>Backends connect your Models to data sources (and stores) – for example Google Docs spreadsheets, local CSV files, the DataHub, ElasticSearch etc. <a href="backends.html">More »</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="well">
|
<div class="well">
|
||||||
<h3>Views</h3>
|
<h3>Views</h3>
|
||||||
<p>Views are user interface components for displaying, editing or interacting with the data. For example, maps, graphs, data grids or a query editor. <a href="library-view.html">More »</a></p>
|
<p>Views are user interface components for displaying, editing or interacting with the data. For example, maps, graphs, data grids or a query editor. <a href="views.html">More »</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -106,27 +107,27 @@ title: Library - Home
|
|||||||
<div class="span4">
|
<div class="span4">
|
||||||
<h4>Models</h4>
|
<h4>Models</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="docs/model.html">Models</a></li>
|
<li><a href="model.html">Models</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<h4>Backends</h4>
|
<h4>Backends</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="docs/backend/base.html">Base module providing convenience functions</a></li>
|
<li><a href="backend/base.html">Base module providing convenience functions</a></li>
|
||||||
<li><a href="docs/backend/memory.html">memory: Memory Backend (local data)</a></li>
|
<li><a href="backend/memory.html">memory: Memory Backend (local data)</a></li>
|
||||||
<li><a href="docs/backend/elasticsearch.html">elasticsearch: ElasticSearch Backend</a></li>
|
<li><a href="backend/elasticsearch.html">elasticsearch: ElasticSearch Backend</a></li>
|
||||||
<li><a href="docs/backend/dataproxy.html">dataproxy: DataProxy Backend (CSV and XLS on the Web)</a></li>
|
<li><a href="backend/dataproxy.html">dataproxy: DataProxy Backend (CSV and XLS on the Web)</a></li>
|
||||||
<li><a href="docs/backend/gdocs.html">gdocs: Google Docs (Spreadsheet) Backend</a></li>
|
<li><a href="backend/gdocs.html">gdocs: Google Docs (Spreadsheet) Backend</a></li>
|
||||||
<li><a href="docs/backend/csv.html">csv: Local CSV file backend</a></li>
|
<li><a href="backend/csv.html">csv: Local CSV file backend</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<h4>Dataset Views and Widgets</h4>
|
<h4>Dataset Views and Widgets</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="docs/view.multiview.html">MultiView View (plus common view code)</a></li>
|
<li><a href="view.multiview.html">MultiView View (plus common view code)</a></li>
|
||||||
<li><a href="docs/view-grid.html">(Data) Grid View</a></li>
|
<li><a href="view-grid.html">(Data) Grid View</a></li>
|
||||||
<li><a href="docs/view-graph.html">Graph View (based on Flot)</a></li>
|
<li><a href="view-graph.html">Graph View (based on Flot)</a></li>
|
||||||
<li><a href="docs/view-map.html">Map View (based on Leaflet)</a></li>
|
<li><a href="view-map.html">Map View (based on Leaflet)</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: container
|
layout: container
|
||||||
title: Library - Views
|
title: Library - Views
|
||||||
|
root: ../
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
Reference in New Issue
Block a user