mirror of
https://github.com/jqlang/jq.git
synced 2025-09-16 14:42:04 +03:00
59 lines
3.0 KiB
Django/Jinja
59 lines
3.0 KiB
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include "shared/_head.html.j2" %}
|
|
|
|
<body>
|
|
{% include "shared/_navbar.html.j2" %}
|
|
|
|
<main id="main" class="container-lg">
|
|
<div class="row">
|
|
<div class="col-md-6 text-center p-3">
|
|
<h1><img src="/jq.svg" class="img-fluid" alt="jq" width="400" height="220"></h1>
|
|
</div>
|
|
<div class="col-md-6 d-flex flex-column justify-content-center text-center align-items-center">
|
|
<h2 class="px-1" style="width:16em">{{ blurb }}</h2>
|
|
<div class="btn-group d-print-none" role="group">
|
|
<button type="button" class="btn btn-primary dropdown-toggle text-nowrap" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Download jq 1.8.1
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu">
|
|
<li><a class="dropdown-item" href="https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64" aria-label="Link to download executable: Linux (AMD64)"><span class="bi bi-download me-2" aria-hidden="true"></span>Linux (AMD64)</a></li>
|
|
<li><a class="dropdown-item" href="https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-arm64" aria-label="Link to download executable: Linux (ARM64)"><span class="bi bi-download me-2" aria-hidden="true"></span>Linux (ARM64)</a></li>
|
|
<li><a class="dropdown-item" href="https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-macos-arm64" aria-label="Link to download executable: macOS (Apple Silicon)"><span class="bi bi-download me-2" aria-hidden="true"></span>macOS (Apple Silicon)</a></li>
|
|
<li><a class="dropdown-item" href="https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-macos-amd64" aria-label="Link to download executable: macOS (Intel Mac)"><span class="bi bi-download me-2" aria-hidden="true"></span>macOS (Intel Mac)</a></li>
|
|
<li><a class="dropdown-item" href="https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-windows-amd64.exe" aria-label="Link to download executable: Windows (AMD64)"><span class="bi bi-download me-2" aria-hidden="true"></span>Windows (AMD64)</a></li>
|
|
<li><a class="dropdown-item" href="/download/">Other platforms, older versions, and source</a></li>
|
|
</ul>
|
|
<a class="btn btn-primary text-nowrap" href="https://play.jqlang.org" rel="noopener">
|
|
Try online!
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row my-3">
|
|
<div class="col-md-4">{{ body1 | markdownify }}</div>
|
|
<div class="col-md-4">{{ body2 | markdownify }}</div>
|
|
<div class="col-md-4">{{ body3 | markdownify }}</div>
|
|
</div>
|
|
|
|
<div class="text-center my-3">
|
|
{{ tail | markdownify }}
|
|
</div>
|
|
|
|
<h2>News</h2>
|
|
<ul>
|
|
{%- for item in news %}
|
|
<li>
|
|
<span class="fst-italic">{{ item.date }}</span>
|
|
{{ item.body | markdownify }}
|
|
</li>
|
|
{%- endfor %}
|
|
</ul>
|
|
</main>
|
|
|
|
{% include "shared/_footer.html.j2" %}
|
|
</body>
|
|
</html>
|