We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92881dc commit df88e9aCopy full SHA for df88e9a
_layouts/script.html
@@ -0,0 +1,20 @@
1
+---
2
+layout: default
3
4
+
5
+<h1 class="d-inline" id="normalized-difference-vegetation-index"> {{page.title}} </h1>
6
+<p class="label label-green mb-5"> {{ page.parent }} </p>
7
8
+{% assign paths = page.dir | remove_first: "/" | split: "/" | join: "-"%}
9
+<p class="mt-lg-4">
10
+ <button class="btn btn-primary" id="toggle-script" onclick="toggleScript()">Show Script</button>
11
+ <a href="{{ page.dir | append: 'script.js' }}" class="btn" target="_blank" download="{{paths | append: '.js'}}">Download Script</a>
12
+</p>
13
14
+<div id="script" style="display:none;">
15
+{% highlight javascript %}
16
+{% include_relative script.js %}
17
+{% endhighlight %}
18
+</div>
19
20
+{{content}}
0 commit comments