37 lines
1.5 KiB
HTML
37 lines
1.5 KiB
HTML
|
|
{%- extends "basic/layout.html" %} {%- block extrahead %} {{ super() }}
|
||
|
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
|
||
|
|
|
||
|
|
<!-- Twitter Buttons -->
|
||
|
|
<script>
|
||
|
|
window.twttr = (function(d, s, id) {
|
||
|
|
var js, fjs = d.getElementsByTagName(s)[0],
|
||
|
|
t = window.twttr || {};
|
||
|
|
if (d.getElementById(id)) return t;
|
||
|
|
js = d.createElement(s);
|
||
|
|
js.id = id;
|
||
|
|
js.src = "https://platform.twitter.com/widgets.js";
|
||
|
|
fjs.parentNode.insertBefore(js, fjs);
|
||
|
|
|
||
|
|
t._e = [];
|
||
|
|
t.ready = function(f) {
|
||
|
|
t._e.push(f);
|
||
|
|
};
|
||
|
|
|
||
|
|
return t;
|
||
|
|
}(document, "script", "twitter-wjs"));
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- Place this tag in your head or just before your close body tag. -->
|
||
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||
|
|
|
||
|
|
{% if theme_touch_icon %}
|
||
|
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" /> {% endif %} {% endblock %} {%- block relbar2 %} {% if theme_github_fork %}
|
||
|
|
<a href="http://github.com/{{ theme_github_fork }}">
|
||
|
|
<img style="position: fixed; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" />
|
||
|
|
</a>
|
||
|
|
{% endif %} {% endblock %} {%- block footer %}
|
||
|
|
<div class="footer">
|
||
|
|
© Copyright {{ copyright }}. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
|
||
|
|
</div>
|
||
|
|
{%- endblock %}
|