summaryrefslogtreecommitdiffstats
path: root/docs/templates/default.liquid
blob: c49de1c3330c0602cb08e9dd4115c1eccfd703a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
  {% include "shared/head" %}
  <body id="{{slug}}">
    {% include "shared/header" %}	
    
    <div class="container">
        
      <div class="row">
        <h1>{{headline}}</h1>
        {% for item in body %}
          {% if item.text %}
            {{ item.text | replace: '$JQ_VERSION', jq_version | markdownify }}
          {% endif %}
        
          {% if item.command %}

        
            {% capture resultID %}{{ "result" | unique}}{% endcapture %}
            <div class="tutorial-example">
              <div class="accordion-heading">
                <pre>{{item.command}}</pre>
                <a data-toggle="collapse" href="#{{resultID}}">Show result</a>
              </div>
              <div id="{{resultID}}" class="accordion-body collapse"><pre>{{item.result}}</pre></div>
            </div>
          {% endif %}
        {% endfor %}
      </div>
    </div>
    {% include "shared/footer" %}
    
  </body>
</html>