summaryrefslogtreecommitdiffstats
path: root/docs/templates/index.liquid
blob: 4165c766ecfa92afde03df5202279518cba7abc8 (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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
  {% include "shared/head" %}
  <body id="{{slug}}">
    {% include "shared/header" %}	
    
    <div class="container">
      <div class="row">
        <div class="hero-unit">
          <img src="{{root}}/jq.png" style="width: 400px; height: 220px; float: left; margin-right: 60px">
          <div id="blurb">
            {{blurb | markdownify}}
            <div class="btn-group" style="float:right">
              <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
                Download jq-{{jq_version}}
                <span class="caret"></span>
              </a>
              <ul class="dropdown-menu">
                <li><a href="{{root}}/download/linux64/jq">Linux (64-bit)</a></li>
                <li><a href="{{root}}/download/osx64/jq">OS X (64-bit)</a></li>
                <li><a href="{{root}}/download/">Other platforms and source</a></li>
              </ul>
            </div>

          </div>
          <div style="clear:both;"></div>
        </div>
      </div>
        
      <div class="row" id="multiblurb">
	<div class="span4">{{body1 | markdownify}}</div>
        <div class="span4">{{body2 | markdownify}}</div>
	<div class="span4">{{body3 | markdownify}}</div>        
      </div>
      <div class="row" style="text-align:center; margin-top: 30px">
        {{tail | markdownify}}
      </div>
    </div>
    {% include "shared/footer" %}    
  </body>
</html>