layout.html 620 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4
{# layout.html #}
{# Import the theme's layout. #}
{% extends "!layout.html" %}

5 6 7 8 9 10 11
{# SIDE NAV, TOGGLES ON MOBILE #}		
{% block menu %}
<nav class="doc-menu-vertical" role="navigation">
{% set toctree = toctree(maxdepth=-1, collapse=False,titles_only=True, includehidden=True) %}
{{ toctree }}
</nav>
{% endblock %}
Y
Yu Yang 已提交
12 13 14 15 16 17 18 19 20 21 22 23

{%- block extrahead %} 
<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "//hm.baidu.com/hm.js?b9a314ab40d04d805655aab1deee08ba";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>
{% endblock %}