Skip to content

Commit

Permalink
Bump theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Nov 22, 2013
1 parent 347c27d commit 7a49a3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def web_logs(type):
fab -P web_logs:middleware
"""
env.user = "docs"
run("tail -f %s/logs/%s.log" % (env.code_dir, type))
run("tail -F %s/logs/%s.log" % (env.code_dir, type))

## Normal bits

Expand Down
4 changes: 2 additions & 2 deletions readthedocs/templates/sphinx/sphinx_rtd_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
</div>

<div class="wy-menu wy-menu-vertical" data-spy="affix">
{% set toctree = toctree(maxdepth=2, collapse=False) %}
{% set toctree = toctree(maxdepth=2, collapse=False, includehidden=True) %}
{% if toctree %}
{{ toctree }}
{% else %}
Expand All @@ -117,7 +117,7 @@
{# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #}
<nav class="wy-nav-top">
<i data-toggle="wy-nav-top" class="icon icon-reorder"></i>
<a href="/">{{ project }}</a>
<a href="{{ pathto(master_doc) }}">{{ project }}</a>
</nav>


Expand Down

0 comments on commit 7a49a3d

Please sign in to comment.