rst/themes/lifescience-theme/layout.html (79 lines of code) (raw):
{%- block doctype -%}
<!DOCTYPE html>
{%- endblock %}
<html lang="en">
{% include "head.html" %}
<body>
{% if pagename != "newsfeed" %}
<div class="wrapper">
{% include "header.html" %}
<div class="uui-main-container">
<main>
{% if pagename == "index" %}
<section class="promo-section promo-section-intro">
<div class="container">
<h1 class="uui-promo-heading">{{ theme_project_full }}</h1>
<div class="uui-big-text">
{{ theme_project_description }}
</div>
</div>
</section>
<section class="promo-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-8" id="main-tiles">
<div class="row" id="index-tiles">
{% include "index-tiles.html" %}
</div>
</div>
<div class="col-xs-12 col-md-4">
{% trans path=pathto('newsfeed') %}<iframe class="news" src="{{ path }}" scrolling="no"></iframe>{% endtrans %}
</div>
</div>
</div>
</section>
{% else %}
<section class="uui-breadcrumbs-container">
<div class="container">
<div class="row">
<ol class="uui-breadcrumbs">
<li><a href="{{ pathto(master_doc) }}">Home</a></li>
{% for doc in parents %}
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a></li>
{% endfor %}
<li class="active"><a href="#">{{ title }}</a></li>
</ol>
</div>
</div>
</section>
<section class="promo-section">
<div class="container">
<div class="row">
{% if "ketcher/demo" not in pagename and pagename != "download/index" and pagename != "contact" and pagename != "imago/imago-report" %}
{% block sidenav %}
<div class="col-xs-12 col-md-3" role="complementary">
{% include "sidenav.html" %}
</div>
{% endblock %}
{% endif %}
{% if "ketcher/demo" not in pagename and pagename != "download/index" and pagename != "contact" and pagename != "imago/imago-report" %}
<div class="col-xs-12 col-md-9" role="main">
{% else %}
<div class="col-xs-12" role="main">
{% endif %}
{%- block body -%}{%- endblock %}
</div>
</div>
</div>
</section>
{% endif %}
</main>
</div>
{% include "footer.html" %}
</div>
{% include "google-analytics.html" %}
{% else %}
{% include "newsfeed.html" %}
{% endif %}
</body>
</html>