mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.0 KiB
43 lines
2.0 KiB
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/pantheon_custom.css' | url }}">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
|
|
<script
|
|
src="https://code.jquery.com/jquery-1.12.4.min.js"
|
|
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
|
|
crossorigin="anonymous"></script>
|
|
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"></script>
|
|
|
|
{% if config.extra.google.site_verification %}
|
|
<!-- Google site verification for search console -->
|
|
<meta name="google-site-verification" content="{{config.extra.google.site_verification}}" />
|
|
{% endif %}
|
|
|
|
{% if config.extra.google.tag_manager %}
|
|
<!-- Google Tag Manager -->
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
})(window,document,'script','dataLayer','{{config.extra.google.tag_manager}}');</script>
|
|
<!-- End Google Tag Manager -->
|
|
{% endif %}
|
|
{% if config.extra.google.tag_manager %}
|
|
<!-- Hotjar Tracking Code for https://docs.pantheon.pegasys.tech -->
|
|
<script>
|
|
(function(h,o,t,j,a,r){
|
|
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
|
|
h._hjSettings={hjid:{{config.extra.hotjar.site_id}},hjsv:6};
|
|
a=o.getElementsByTagName('head')[0];
|
|
r=o.createElement('script');r.async=1;
|
|
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
|
|
a.appendChild(r);
|
|
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block analytics %}
|
|
<!--Empty the footer analytics bloc as we need it the headers -->
|
|
{% endblock %}
|
|
|