forked from Shopify/shopify.github.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
120 lines (114 loc) · 3.98 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
layout: default
title: Open Source for Shopify
description: A collection of Shopify-related open source projects, developed by third parties.
---
<div class="hero">
<div class="hero-lines"></div>
<header class="hero-header">
<div class="pagewidth">
<div class="logo--ie">
<img src="/images/open-source-for-shopify.svg" alt="Open Source for Shopify" class="logo">
</div>
<ul class="inline-list git-stats">
<li>
<span id="countRepos" class="git-stat is-loading"></span> Repos
</li>
</ul>
</div>
</header>
<div class="pagewidth">
<div class="hero-inner">
<h1 class="hero-text">A collection of Shopify-related open source projects, developed by third parties.</h1>
<p>This collection of third-party projects is not officially supported or endorsed by Shopify.</p>
<p>For the list of official Shopify open source projects, <a href="http://shopify.github.io/">go here</a>.</p>
</div>
</div>
</div>
<div class="pagewidth">
<div class="filter-bar">
<div class="button-group js-radio-button-group" id="filters">
<div class="filter-bar--left">
Show
</div>
<div class="filter-bar--right">
<button class="btn is-active" data-filter="*">All</button>
<span class="filter-bar--divider">/</span>
<button class="btn" data-filter=".themes">Themes</button>
<button class="btn" data-filter=".apps">Apps</button>
<button class="btn" data-filter=".tools">Tools</button>
<span class="filter-bar--divider">/</span>
<button class="btn" data-filter=".liquid">Liquid</button>
<button class="btn" data-filter=".javascript">JavaScript</button>
<button class="btn" data-filter=".python">Python</button>
<button class="btn" data-filter=".ruby">Ruby</button>
<button class="btn" data-filter=".php">PHP</button>
</div>
</div>
</div>
</div>
<div class="repoWrap">
<div class="pagewidth">
<div id="repos"></div>
<div class="repo-loader">
<div class="repo-loader--inner">
<div class="spinner spinner-large"></div>
</div>
</div>
</div>
</div>
<script id="repoTemplate" type="text/template">
{% raw %}
{{#items}}
<div class="repo {{languageClass}} {{categoryClass}}{{#unless description}} no-desc{{/unless}}">
<header class="repo-header">
<div class="grid">
<div class="grid-item large--one-half">
<h2>
{{#if homepage}}
{{#if avatar}}
<a href="{{homepage}}" class="homepage-link">
<img src="{{avatar}}" alt="{{name}}">
</a>
{{else}}
<a href="{{homepage}}" class="homepage-link">
<i class="icon-world"></i>
</a>
{{/if}}
<a href="{{homepage}}" title="View {{name}} on Github">{{name}}</a>
{{else}}
{{#if avatar}}
<img src="{{avatar}}" class="homepage-link" alt="{{name}}">
{{/if}}
<a href="{{url}}" title="View {{name}} on Github">{{name}}</a>
{{/if}}
</h2>
</div>
<div class="grid-item large--one-half">
<div class="repo-meta">
<div class="repo-git">
<a href="{{url}}" title="View {{name}} on GitHub">
<i class="icon-github" title="View on GitHub"></i> Repo
</a>
</div>
<div class="repo-stats">
<i class="icon-star" title="Stars"></i> {{stars}}
<i class="icon-forks" title="Forks"></i> {{forks}}
<span class="repo-category">{{category}}</span>
<span class="repo-stats-divider">/</span>
<span class="repo-lang">{{language}}</span>
</div>
</div>
</div>
</div>
</header>
{{#if description}}
<p>{{description}}</p>
{{/if}}
</div>
{{/items}}
{% endraw %}
</script>
<script>
var repos = {{ site.github.public_repositories | jsonify }};
</script>