-
-
Notifications
You must be signed in to change notification settings - Fork 527
/
cask_index.html
23 lines (21 loc) · 920 Bytes
/
cask_index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
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.repository }} 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 cask in sorted_casks -%}
{%- assign subfolder = cask[1].ruby_source_path | slice: 6, 4 -%}
{%- unless subfolder == "font" -%}
<tr>
{%- assign data_token = cask[0] -%}
{%- assign token = cask[1].token -%}
{%- include cask.html data_token=data_token token=token -%}
</tr>
{%- endunless -%}
{%- endfor -%}
</table>
<footer id="border-no-bottom">Last updated: {{ "today" | date: "%F %R" }}</footer>