1
0
mirror of https://github.com/bigchaindb/site.git synced 2025-02-14 21:10:28 +01:00
site/_src/_layouts/base.html
Matthias Kretschmann d8391d4cea
Revert "Reverting master to commit 014e45. (#307)"
This reverts commit 7c110417aee9f83866c235aec90f24df850bab2d.
2020-05-25 10:51:54 +02:00

29 lines
921 B
HTML

<!doctype html>
<html lang="en">
{% include head.html %}
{% capture id %}{% if page.front_page %}front{% else %}{{ page.url | replace:'/','-' | replace_first:'-','' | replace:'.html','' | replace:'-index','' }}{% endif %}{% endcapture %}
<body class="page-{{ id | remove:'-' }}" role="document">
<!--[if lt IE 9]>
<div class="browsehappy alert alert-warning">
<p>You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/" target="_blank">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true" target="_blank">activate Google Chrome Frame</a> to improve your experience.</p>
</div>
<![endif]-->
{% include banner.html %}
{{ content }}
{% include footer.html %}
{% include cookie-banner.html %}
{% include scripts.html %}
</body>
</html>