1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
{% extends "basic/layout.html" %}
{% block extrahead %}
{% if online %}
<link href='http://fonts.googleapis.com/css?family=OFL+Sorts+Mill+Goudy+TT|Inconsolata'
rel='stylesheet' type='text/css'>
{% endif %}
{% endblock %}
{% block header %}
<div class="book">
<div class="banner">
<a href="{{ pathto(master_doc) }}">
<h1><img src="_static/logbook-logo.png" style="height: 2em;position: relative;top: 40px;">{{ project }} </h1>
</a>
</div>
{% endblock %}
{% block footer %}
{% if online %}
<a href="http://github.com/getlogbook/logbook">
<img style="position: fixed; top: 0; right: 0; border: 0;"
src="http://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"
alt="Fork me on GitHub">
</a>
{% endif %}
{{ super() }}
</div>
{% endblock %}
|