-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
184 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
name: Robottiker | ||
markdown: redcarpet | ||
pygments: true | ||
highlighter: true | ||
future: true | ||
tagline: "Robottiker Documentation and Concepts" | ||
tagline: "Documentations" | ||
image: "img/app.png" | ||
repo: "Robottiker" | ||
collections: | ||
space: | ||
output: true | ||
water: | ||
output: true | ||
power: | ||
output: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
<div class="navbar navbar-fixed-top"> | ||
<div class="navbar-inner"> | ||
<a class="brand pull-left" href="/">Robottiker</a> | ||
<p class="navbar-text pull-right"> | ||
Powered by <a href="http://jekyllrb.com">Jekyll</a> | ||
</p> | ||
</div> | ||
</div> | ||
<div class="navbar navbar-fixed-top"> | ||
<div class="navbar-inner"> | ||
<a class="brand pull-left" href="/">Robottiker</a> | ||
<ul class="nav"> | ||
<li><a href="license.html">License</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
<p class="navbar-text pull-right"> | ||
Powered by <a href="http://jekyllrb.com">Jekyll</a> | ||
</p> | ||
</div> | ||
</div> |
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,18 @@ | ||
<ul class="nav nav-list"> | ||
{% for project in site.collections %} | ||
{% if project.label != "posts" %} | ||
<li class="open"> | ||
<a href="/{{ project.label }}/index.html">{{ project.label }}</a> | ||
<ul class="nav nav list"> | ||
{% for document in project.docs %} | ||
{% if document.layout != "project_index" %} | ||
<li> | ||
<a href="{{ document.url }}">{{ document.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> |
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,9 @@ | ||
<ul class="nav nav-list"> | ||
{% for post in site.posts %} | ||
{% if post.title %} | ||
<li> | ||
<a href="{{ post.url }}">{{ post.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> |
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
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
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,41 @@ | ||
<!doctype html> | ||
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]--> | ||
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | ||
<head> | ||
{% include includes.html %} | ||
</head> | ||
<body> | ||
<!-- Docs --> | ||
<div class="container-fluid fluid-height wrapper"> | ||
{% include header.html %} | ||
|
||
<div class="row-fluid columns content"> | ||
<div class="left-column article-tree span3"> | ||
<!-- For Mobile --> | ||
<div class="responsive-collapse"> | ||
<button type="button" class="btn btn-sidebar" id="menu-spinner-button"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
</div> | ||
<div id="sub-nav-collapse" class="sub-nav-collapse"> | ||
{% include nav_docs.html %} | ||
</div> | ||
</div> | ||
<div class="right-column content-area span9"> | ||
<div class="content-page"> | ||
<article> | ||
<div class="page-header sub-header clearfix"> | ||
<h1>{{page.title}}</h1> | ||
</div> | ||
{{ content }} | ||
</article> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: project_index | ||
title: "Index" | ||
categories: docs power | ||
--- | ||
|
||
This is the content for Power. |
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,7 @@ | ||
--- | ||
layout: default | ||
title: "Schema" | ||
categories: docs power | ||
--- | ||
|
||
Power grid schema. |
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,7 @@ | ||
--- | ||
layout: default | ||
title: "Base structure" | ||
categories: docs space | ||
--- | ||
|
||
Explain the base structure. |
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,7 @@ | ||
--- | ||
layout: project_index | ||
title: "Index" | ||
categories: space | ||
--- | ||
|
||
This is the content for Space. |
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,7 @@ | ||
--- | ||
layout: default | ||
title: "Filtration" | ||
categories: docs water | ||
--- | ||
|
||
Filtration! |
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,7 @@ | ||
--- | ||
layout: project_index | ||
title: "Index" | ||
categories: docs water | ||
--- | ||
|
||
This is the content for Water. |
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,11 @@ | ||
--- | ||
layout: default | ||
title: "Projects" | ||
--- | ||
<ul class="posts"> | ||
{% for collection in site.collections %} | ||
{% if collection.title %} | ||
<li><span>{{ collection.title }}</span></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: post | ||
title: "Blog" | ||
--- | ||
<ul class="posts"> | ||
{% for post in site.posts %} | ||
{% if post.title %} | ||
<li><span>{{ post.title }}</span></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> |