diff options
| author | Alban Peignier | 2012-03-16 12:44:01 +0100 | 
|---|---|---|
| committer | Alban Peignier | 2012-03-16 12:44:01 +0100 | 
| commit | 153c6f7022a608c6780b265d3b91c95829b192e4 (patch) | |
| tree | 87f9c986dbb186aea7d6d9f2ccefa13a3a19d9e1 /doc | |
| parent | 6792aa2c5f368a6147bf930391f0458e362e6160 (diff) | |
| download | chouette-core-153c6f7022a608c6780b265d3b91c95829b192e4.tar.bz2 | |
Create jekyll online help
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/functional/_config.yml | 3 | ||||
| -rw-r--r-- | doc/functional/_layouts/default.html | 41 | ||||
| -rw-r--r-- | doc/functional/_layouts/post.html | 7 | ||||
| -rw-r--r-- | doc/functional/index.textile | 7 | ||||
| -rw-r--r-- | doc/functional/stylesheets/help.css | 38 | ||||
| -rw-r--r-- | doc/functional/stylesheets/help.scss | 38 | 
6 files changed, 134 insertions, 0 deletions
diff --git a/doc/functional/_config.yml b/doc/functional/_config.yml new file mode 100644 index 000000000..fa1c30662 --- /dev/null +++ b/doc/functional/_config.yml @@ -0,0 +1,3 @@ +permalink: :month-:day-:year/:title.html + + diff --git a/doc/functional/_layouts/default.html b/doc/functional/_layouts/default.html new file mode 100644 index 000000000..ed13ca5f6 --- /dev/null +++ b/doc/functional/_layouts/default.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html> +  <head> +    <base href="/help/"/> +    <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> +    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> + +    <link href="/assets/application.css?body=1" media="screen" rel="stylesheet" type="text/css" /> +    <link href="/assets/user_interface.css?body=1" media="screen" rel="stylesheet" type="text/css" /> +    <link href="/assets/user_interface/layout.css?body=1" media="screen" rel="stylesheet" type="text/css" /> +    <link href="/assets/formtastic.css?body=1" media="screen" rel="stylesheet" type="text/css" /> +    <link href="/assets/formtastic_changes.css?body=1" media="screen" rel="stylesheet" type="text/css" /> +    <link href="/assets/legacy.css?body=1" media="screen" rel="stylesheet" type="text/css" /> + +    <link href="/help/stylesheets/help.css" media="screen" rel="stylesheet" type="text/css" />  +    <title>Chouette Documentation - {{ page.title }}</title> +  </head> +  <body> +    <div id="header"> +      <div class="infos"> +        <ul class="user"> +          <li><a href="/">Accueil</a></li> +        </ul> +        <h1>Chouette Documentation</h1> +      </div> +      <div class="tabs"> +        <ul class="main"> +          <li><a class="current" href="/help/">Accueil</a></li> +        </ul> +      </div> +    </div> + +    <div id="body"> +      <div id="workspace"> +        <h2>{{ page.title }}</h2> +        {{ content }} +      </div> +    </div> +  </body> +</html> + diff --git a/doc/functional/_layouts/post.html b/doc/functional/_layouts/post.html new file mode 100644 index 000000000..007adf923 --- /dev/null +++ b/doc/functional/_layouts/post.html @@ -0,0 +1,7 @@ +--- +layout: default +--- + +<h2>{{ page.title }}</h2> + +{{ content }} diff --git a/doc/functional/index.textile b/doc/functional/index.textile new file mode 100644 index 000000000..92c6e79d6 --- /dev/null +++ b/doc/functional/index.textile @@ -0,0 +1,7 @@ +--- +layout: default +title: Présentation +--- + +p. TODO + diff --git a/doc/functional/stylesheets/help.css b/doc/functional/stylesheets/help.css new file mode 100644 index 000000000..437b28347 --- /dev/null +++ b/doc/functional/stylesheets/help.css @@ -0,0 +1,38 @@ +#workspace h2 { +    font-size: 17px; +} + +#workspace h3 { +    font-size: 15px; +} + +#workspace h4 { +    font-weight: bold; +    padding: 7px 0; +} + +#workspace ul li { +    list-style: circle; +    margin: 7px 0 7px 20px; +} + +#workspace em { +    font-style: italic; +} + +#workspace table { +    width: 100%; +} + +#workspace table td { +    padding: 3px 5px; +    width: 30%; +} + +#workspace dt { +    margin: 5px 0;  +} + +#workspace dd { +    padding-left: 10px; +}
\ No newline at end of file diff --git a/doc/functional/stylesheets/help.scss b/doc/functional/stylesheets/help.scss new file mode 100644 index 000000000..42a5a2d0c --- /dev/null +++ b/doc/functional/stylesheets/help.scss @@ -0,0 +1,38 @@ +#workspace h2 { +    font-size: 17px; +} + +#workspace h3 { +    font-size: 15px; +} + +#workspace h4 { +    font-weight: bold; +    padding: 7px 0; +} + +#workspace ul li { +    list-style: circle; +    margin: 7px 0 7px 20px; +} + +#workspace em { +    font-style: italic; +} + +#workspace table { +    width: 100%; +} + +#workspace table td { +    padding: 3px 5px; +    width: 30%; +} + +#workspace dt { +    margin: 5px 0;  +} + +#workspace dd { +    padding-left: 10px; +}  | 
