templates/twitter_narrative.html (27 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> {% extends "default_head.html" %} {% endextends %} <body> {% extends "navbar.html" %} {% endextends %} <div id="page" class="container"> <div class="row"> <h1>{% block tagline %}{{ headers.title }}{% endblock %}</h1> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6"> {% block content %}<div id="content">{{ content|markdown }}</div>{% endblock %} </div> <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6"> <a class="twitter-timeline" href="https://twitter.com/ApacheTaverna" data-widget-id="578527934060847105">Tweets by @ApacheTaverna</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </div> </div> </div> {% extends "default_footer.html" %} {% endextends %} {% extends "default_scripts.html" %} {% endextends %} </body> </html>