Skip to content

Commit

Permalink
Merge branch 'dev' for a complete new content
Browse files Browse the repository at this point in the history
  • Loading branch information
GuGuss committed Nov 5, 2014
2 parents dac117f + 96c1def commit 1d52d89
Show file tree
Hide file tree
Showing 161 changed files with 2,683 additions and 1,446 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ clean:

html:
mkdir -p _build/html _build/doctrees
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) _build/html
@echo
@echo "Build finished. The HTML pages are in _build/html."

Expand Down
64 changes: 28 additions & 36 deletions cgdocs/layout.html
Original file line number Diff line number Diff line change
@@ -1,41 +1,33 @@
{% if theme_bootstrap_version == "3" %}
{% set bootstrap_version, bootstrap_additional_css, navbar_version = "3.0.0", "theme", "" %}
{% set bs_span_prefix = "col-md-" %}
{% if theme_bootswatch_theme %}
{% set css_files = css_files + [
'//netdna.bootstrapcdn.com/bootswatch/' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css',
'_static/bootstrap-sphinx.css'
]
%}
{% else %}
{% set css_files = [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap.min.css'
] + css_files
%}
{% set css_files = css_files + [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css',
'_static/bootstrap-sphinx.css'
]
%}
{% endif %}
{% set bootstrap_version, bootstrap_additional_css, navbar_version = "3.0.0", "theme", "" %}
{% set bs_span_prefix = "col-md-" %}
{% set css_files = [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap.min.css'
] + css_files
%}
{% set css_files = css_files + [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css',
'_static/bootstrap-sphinx.css'
]
%}
{% else %}
{% set bootstrap_version, bootstrap_additional_css, navbar_version = "2.3.2", "responsive", "-2" %}
{% set bs_span_prefix = "span" %}
{% set css_files = [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap.min.css'
] + css_files
%}
{% if theme_bootswatch_theme %}
{% set css_files = css_files + [
'//netdna.bootstrapcdn.com/bootswatch/' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css'
]
%}
{% endif %}
{% set css_files = css_files + [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css',
'_static/bootstrap-sphinx.css'
]
%}
{% set bootstrap_version, bootstrap_additional_css, navbar_version = "2.3.2", "responsive", "-2" %}
{% set bs_span_prefix = "span" %}
{% set css_files = [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap.min.css'
] + css_files
%}
{% if theme_bootswatch_theme %}
{% set css_files = css_files + [
'//netdna.bootstrapcdn.com/bootswatch/' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css'
]
%}
{% endif %}
{% set css_files = css_files + [
'_static/bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css',
'_static/bootstrap-sphinx.css'
]
%}
{% endif %}
{% set css_files = css_files + [
'_static/cgdocs.css'
Expand Down
8 changes: 5 additions & 3 deletions cgdocs/ptoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
<ul class="dropdown-menu globaltoc">
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('index') }}">Platform Index</a></li>
<li class="divider"></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('using-platform/index') }}">Common Tasks</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('quick-start-guide/index') }}">Learning</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('reference/index') }}">Reference Topics</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('overview/index') }}">Overview</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('use-platform/index') }}">Using Platform</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('toolstacks/drupal/index') }}">Drupal</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('toolstacks/symfony/index') }}">Symfony</a></li>
<li class="toctree-l1 dropdown-submenu parent"><a href="{{ pathto('reference/index') }}">Reference</a></li>
</ul>
</li>
Loading

0 comments on commit 1d52d89

Please sign in to comment.