Skip to content

Commit df88e9a

Browse files
Added script layout
1 parent 92881dc commit df88e9a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

_layouts/script.html

+20
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)