mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
25 lines
786 B
HTML
25 lines
786 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
{% capture id %}{{ page.url | replace:'/','-' | replace_first:'-','' | replace:'.html','' | replace:'-index','' }}{% 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]-->
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
|
|
{% include scripts.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|