diff options
| -rw-r--r-- | docs/agogo/layout.html | 17 | ||||
| -rw-r--r-- | docs/agogo/static/agogo.css_t | 12 |
2 files changed, 28 insertions, 1 deletions
diff --git a/docs/agogo/layout.html b/docs/agogo/layout.html index 2baa193..2a6989c 100644 --- a/docs/agogo/layout.html +++ b/docs/agogo/layout.html @@ -208,10 +208,25 @@ {{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a> {%- if not loop.last %}{{ reldelim2 }}{% endif %} {%- endfor %} + {%- if show_source and has_source and sourcename %} + <br/> + <a href="{{ pathto('_sources/' + sourcename, true)|e }}" + rel="nofollow">{{ _('Show Source') }}</a> + {%- endif %} </div> <div class="right"> - + {%- if hasdoc('copyright') %} + {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %} + {%- else %} + {% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} + {%- endif %} + {%- if last_updated %} + {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} + {%- endif %} + {%- if show_sphinx %}<br/> + {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %} + {%- endif %} </div> <div class="clearer"></div> </div> diff --git a/docs/agogo/static/agogo.css_t b/docs/agogo/static/agogo.css_t index 65bee66..ef60a44 100644 --- a/docs/agogo/static/agogo.css_t +++ b/docs/agogo/static/agogo.css_t @@ -216,6 +216,18 @@ div.footer-wrapper { min-height: 80px; } +div.footer, div.footer a { + color: #888a85; +} + +div.footer .right { + text-align: right; +} + +div.footer .left { + text-transform: uppercase; +} + /* Styles copied form basic theme */ |
