Skip to content

Commit

Permalink
Undo formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbegley committed Apr 14, 2024
1 parent 1dc555f commit abda7c8
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions docs/templates/example.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{% from 'macros/example-navbar.html' import example_navbar %}
{% extends 'base.html' %}
{% block header %}
{{ example_navbar() }}
{% endblock %}
{% from "macros/example-navbar.html" import example_navbar %}
{% extends "base.html" %}
{% block header %}{{ example_navbar() }}{% endblock %}
{% block body %}
<main class="dbcd-main mb-5 mx-2 mx-md-4 my-4">
{% block size_warning %}

{% endblock %}
{% block size_warning %}{% endblock %}
<div data-bs-theme="light" style="transform:translateZ(0);box-shadow:0 0 10px 5px #9c9c9c;min-height:calc(700px);">
{% block content %}

{% endblock %}
{% block content %}{% endblock %}
</div>
<div>
<h2>Source Code</h2>
Expand All @@ -20,13 +14,7 @@ <h2>Source Code</h2>
This code is available
<a href="{{ example_link }}">in the examples directory</a> of our GitHub repository.
</p>
<pre class="mt-3">
<code class="language-python">
{% block code %}

{% endblock %}
</code>
</pre>
<pre class="mt-3"><code class="language-python">{% block code %}{% endblock %}</code></pre>
</div>
</main>
{% endblock %}

0 comments on commit abda7c8

Please sign in to comment.