27 lines
810 B
HTML
27 lines
810 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
<meta property="og:title" content="">
|
|
<meta property="og:site_name" content="">
|
|
<meta property="og:url" content="">
|
|
<meta property="og:description" content="Transform your prototype AI code into production-ready software.">
|
|
<meta property="og:type" content="">
|
|
<meta property="og:image" content=https://great-ai.scoutinscience.com/media/og-image.png>
|
|
|
|
<style>
|
|
.jupyter-wrapper a {
|
|
color: var(--md-typeset-a-color) !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if page.nb_url %}
|
|
<a href="{{ page.nb_url }}" title="Download Notebook" class="md-content__button md-icon">
|
|
{% include ".icons/material/download.svg" %}
|
|
</a>
|
|
{% endif %}
|
|
|
|
{{ super() }}
|
|
{% endblock content %}
|