2020-06-18 10:29:57 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" dir="ltr">
|
|
|
|
{{ partial('partial/head') }}
|
|
|
|
<body>
|
2020-01-30 15:44:03 +00:00
|
|
|
|
2020-06-18 10:29:57 +00:00
|
|
|
{{ body }}
|
|
|
|
{{ partial('partial/footer') }}
|
|
|
|
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.4/highlight.min.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script>
|
|
|
|
<script>
|
|
|
|
const EMBARK_DOC_VERSIONS = {
|
|
|
|
{% for version in Object.keys(site.data.versions) %}'{{version}}': '{{site.data.versions[version].url}}'{% if !loop.last %},{% endif%}{% endfor %}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{% if env.args.production %}
|
|
|
|
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
|
|
|
|
<script>
|
|
|
|
(function(f, a, t, h, o, m){
|
|
|
|
a[h]=a[h]||function(){(a[h].q=a[h].q||[]).push(arguments)};
|
|
|
|
o=f.createElement('script'),
|
|
|
|
m=f.getElementsByTagName('script')[0];
|
|
|
|
o.async=1; o.src=t; o.id='fathom-script';
|
|
|
|
m.parentNode.insertBefore(o,m)
|
|
|
|
})(document, window, '//fathom.status.im/tracker.js', 'fathom');
|
2020-01-29 20:01:02 +00:00
|
|
|
fathom('set', 'siteId', 'IMIPJ');
|
2020-06-18 10:29:57 +00:00
|
|
|
fathom('trackPageview');
|
|
|
|
</script>
|
|
|
|
<!-- / Fathom -->
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<script src="/js/index.js"></script>
|
|
|
|
|
|
|
|
{% if config.algolia[page.lang] %}
|
|
|
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
docsearch({
|
|
|
|
apiKey: '{{ config.algolia[page.lang].apiKey }}',
|
|
|
|
indexName: '{{ config.algolia[page.lang].indexName }}',
|
|
|
|
inputSelector: '#search-input'
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|