added github ribbon
This commit is contained in:
24
doc/_templates/layout.html
vendored
Normal file
24
doc/_templates/layout.html
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{% extends "!layout.html" %}
|
||||
|
||||
{# Custom CSS overrides #}
|
||||
{# set bootswatch_css_custom = ['_static/my-styles.css'] #}
|
||||
|
||||
{# Add github banner (from: https://github.com/blog/273-github-ribbons). #}
|
||||
{% block header %}
|
||||
{{ super() }}
|
||||
<a href="https://github.com/frankmorgner/vsmartcard"
|
||||
class="visible-desktop hidden-xs"><img
|
||||
id="gh-banner"
|
||||
style="position: absolute; top: 50px; right: 0; border: 0;"
|
||||
src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"
|
||||
alt="Fork me on GitHub"></a>
|
||||
<script>
|
||||
// Adjust banner height.
|
||||
$(function () {
|
||||
var navHeight = $(".navbar .container").css("height");
|
||||
$("#gh-banner").css("top", navHeight);
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user