first import book
This commit is contained in:
parent
6be2701fd8
commit
dfd9c869d5
233 changed files with 47797 additions and 0 deletions
30
book/_templates/sphinx_bootstrap/relations.html
Normal file
30
book/_templates/sphinx_bootstrap/relations.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{%- if prev %}
|
||||
<li id="relations-prev" title="Previous Chapter - {{ prev.title }}" data-toggle="tooltip">
|
||||
<a href="{{ prev.link|e }}" >
|
||||
<i class='glyphicon glyphicon-backward' style='opacity:0.9;'></i>
|
||||
</a>
|
||||
</li>
|
||||
{% if not next %}
|
||||
<li class="divider-vertical"></li>
|
||||
{% endif %}
|
||||
|
||||
{%- endif %}
|
||||
|
||||
{%- if next %}
|
||||
<li id="relations-next" title='Next Chapter - {{ next.title }}' data-toggle="tooltip" >
|
||||
<a href="{{ next.link|e }}" >
|
||||
<i class='glyphicon glyphicon-forward' style='opacity:0.9;'></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="divider-vertical"></li>
|
||||
{%- endif %}
|
||||
|
||||
<script type="text/javascript">
|
||||
opts = {'placement':'bottom',
|
||||
'selector': '',
|
||||
'delay': { show: 100, hide: 50}
|
||||
};
|
||||
|
||||
$('#relations-prev').tooltip(opts);
|
||||
$('#relations-next').tooltip(opts);
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue