2015-11-27 13:22:06 +02:00
{% extends "!footer.html" %}
2015-11-27 00:37:46 +02:00
2015-11-27 13:22:06 +02:00
{% block extrafooter %}
2016-01-14 00:02:23 +02:00
< link rel = "stylesheet" href = "{{ pathto('_static/extra.css', 2) }}" type = "text/css" / >
2015-11-27 00:37:46 +02:00
< header id = "pionav" class = "navbar navbar-inverse navbar-fixed-top" >
2016-01-14 00:02:23 +02:00
< a href = "http://iotawards.postscapes.com/2015-16/best-iot-software-and-tools#vote" target = "_blank" class = "top-banner" > PlatformIO is nominated for the year's best Software and Tools in the 2015/16 IoT Awards < i class = "fa fa-trophy fa-2x" > < / i > Please vote for us!< / a >
2015-11-27 00:37:46 +02:00
< div class = "container container-fluid" >
< div class = "navbar-header" >
< a class = "navbar-brand" href = "http://platformio.org/" > < / i > PlatformIO< / a >
< / div >
< nav role = "navigation" >
< div >
< ul class = "nav navbar-nav" >
2015-12-21 20:52:39 +02:00
< li > < a href = "http://platformio.org/#!/get-started" > < i class = "fa fa-rocket fa-lg" > < / i > Get Started< / a > < / li >
< li > < a href = "http://platformio.org/#!/platforms" > < i class = "fa fa-laptop fa-lg" > < / i > Platforms< / a > < / li >
< li > < a href = "http://platformio.org/#!/frameworks" > < i class = "fa fa-cogs fa-lg" > < / i > Frameworks< / a > < / li >
< li > < a href = "http://platformio.org/#!/boards" > < i class = "fa fa-gamepad fa-lg" > < / i > Boards< / a > < / li >
< li > < a href = "http://platformio.org/#!/lib" > < i class = "fa fa-code fa-lg" > < / i > Libraries< / a > < / li >
2015-11-27 00:37:46 +02:00
< / ul >
< ul class = "nav navbar-nav navbar-right" >
2015-12-21 20:52:39 +02:00
< li > < a href = "http://platformio.org/#!/who-uses" > < i class = "fa fa-heart-o fa-lg" > < / i > Who uses< / a > < / li >
< li class = "active" > < a href = "http://docs.platformio.org/" > < i class = "fa fa-book fa-lg" > < / i > Docs< / a > < / li >
2015-11-27 00:37:46 +02:00
< / ul >
< / div >
< / nav >
< / div >
< / header >
2015-12-12 22:45:37 +02:00
< script >
(function() {
var runMyCode = function($) {
$(window).ready(function() {
if ($('#pionav').css('display') !== 'block') {
return;
}
2015-12-12 22:48:45 +02:00
function fixScroll() {
2016-01-14 00:02:23 +02:00
$(window).scrollTop($(window).scrollTop() - 100);
2015-12-12 22:48:45 +02:00
}
window.setTimeout(fixScroll, 50);
$(window).on('hashchange', function(e){fixScroll();});
2015-12-21 20:52:39 +02:00
});
2015-12-12 22:45:37 +02:00
};
var timer = function() {
if (window.jQuery) {
runMyCode(window.jQuery);
} else {
window.setTimeout(timer, 50);
}
};
timer();
})();
< / script >
2015-11-27 13:22:06 +02:00
{{ super() }}
2015-11-29 17:56:26 +02:00
{% endblock %}