forked from Homebrew/formulae.brew.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcask_index.html
More file actions
20 lines (18 loc) · 718 Bytes
/
cask_index.html
File metadata and controls
20 lines (18 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
title: homebrew-cask
layout: default
permalink: /cask/
---
<p>This is a listing of all casks available from the <a href="{{ site.taps.cask.remote }}">{{ site.taps.cask.repo }} tap</a> via the <a href="https://brew.sh">Homebrew</a> package manager for macOS.</p>
<h2><a href="{{ site.baseurl }}/api/cask.json"><code>/api/cask.json</code> (JSON API)</a></h2>
<table>
{%- assign sorted_casks = site.data.cask | sort -%}
{%- for c in sorted_casks -%}
<tr>
{%- assign token = c[0] -%}
{%- assign cask = c[1] -%}
{%- include cask.html token=token cask=cask -%}
</tr>
{%- endfor -%}
</table>
<footer id="border-no-bottom">Last updated: {{ "today" | date: "%F %R" }}</footer>