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.
24 lines
994 B
24 lines
994 B
6 years ago
|
{% 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>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block analytics %}
|
||
|
{% if config.google_analytics %}
|
||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ config.google_analytics[0] }}"></script>
|
||
|
<script>
|
||
|
window.dataLayer = window.dataLayer || [];
|
||
|
function gtag(){dataLayer.push(arguments);}
|
||
|
gtag('js', new Date());
|
||
|
|
||
|
gtag('config', '{{ config.google_analytics[0] }}');
|
||
|
</script>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|