This repository was archived by the owner on Nov 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 649
/
Copy pathcommunity.hbs
128 lines (116 loc) Β· 4.67 KB
/
community.hbs
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
120
121
122
123
124
125
126
127
128
<main class="PRIMER-REMOVE-ME">
<div class='subtron'>
<div class='container-lg p-responsive'>
<h1 class="f0-light">{{localized.community.title}}</h1>
<p class="lead mb-3">{{{localized.community.description}}}</p>
</div>
</div>
<div class='py-7 py-md-8 py-lg-9'>
<div class="container-lg p-responsive">
<p class="lead mb-4">π {{{localized.community.channels.get_started}}}</p>
<p class="lead mb-4">π£ {{{localized.community.channels.updates}}}</p>
<p class="lead mb-4">{{#replace}}{{{localized.community.channels.help}}}{{/replace}}</p>
<p class="lead mb-4">π {{{localized.community.channels.localized_docs}}}</p>
<p class="lead mb-4">π {{{localized.community.channels.security}}}</p>
<p class="lead mb-4">π {{{localized.community.channels.bugs}}}</p>
<p class="lead mb-4">π‘ {{{localized.community.channels.feature_requests}}}</p>
<p class="lead mb-4">βοΈ {{{localized.community.channels.code_of_conduct}}}</p>
<p class="lead mb-4">π° {{{localized.community.channels.donations}}}</p>
<p class="lead mb-4">β {{{localized.community.channels.other}}}</p>
</div>
<div class="container-lg p-responsive my-5">
<h2 id="language-communities" class="f1-light">{{localized.community.language_communities.title}}</h2>
<p>{{{localized.community.language_communities.description}}}</p>
<ul class="markdown-body">
<li><a href="https://telegram.me/electron_ru" rel="nofollow">electron-ru</a> <em>(Russian)</em></li>
<li><a href="https://electron-br.slack.com" rel="nofollow">electron-br</a> <em>(Brazilian Portuguese)</em></li>
<li><a href="https://electron-kr.github.io/electron-kr" rel="nofollow">electron-kr</a> <em>(Korean)</em></li>
<li><a href="https://electron-jp.slack.com" rel="nofollow">electron-jp</a> <em>(Japanese)</em></li>
<li><a href="https://electron-tr.herokuapp.com" rel="nofollow">electron-tr</a> <em>(Turkish)</em></li>
<li><a href="https://electron-id.slack.com" rel="nofollow">electron-id</a> <em>(Indonesia)</em></li>
<li><a href="https://electronpl.github.io" rel="nofollow">electron-pl</a> <em>(Poland)</em></li>
<li><a href="https://electron-zh.slack.com" rel="nofollow">electron-zh</a> <em>(China)</em></li>
</ul>
</div>
<div class="container-lg p-responsive">
<h2 id="tools" class="f1-light">{{localized.community.tools}}</h2>
<table class="table table-ruled table-full-width table-with-spacious-first-column mb-7">
{{#each items}}
{{#if this.isTool}}
{{#if this.isForElectron}}
<tr>
<td>
<a href="{{ this.href }}">{{ this.name }}</a>
</td>
<td>
{{ this.description }}
</td>
</tr>
{{/if}}
{{/if}}
{{/each}}
</table>
<h2 id="boilerplates" class="f1-light">{{localized.community.boilerplates}}</h2>
<table class="table table-ruled table-full-width table-with-spacious-first-column mb-7">
{{#each items}}
{{#if this.isBoilerplate}}
<tr>
<td>
<a href="{{ this.href }}">{{ this.name }}</a>
</td>
<td>
{{ this.description }}
</td>
</tr>
{{/if}}
{{/each}}
</table>
<h2 id="components" class="f1-light">{{localized.community.components}}</h2>
<table class="table table-ruled table-full-width table-with-spacious-first-column mb-7">
{{#each items}}
{{#if this.isComponent}}
<tr>
<td>
<a href="{{ this.href }}">{{ this.name }}</a>
</td>
<td>
{{ this.description }}
</td>
</tr>
{{/if}}
{{/each}}
</table>
<h2 id="videos" class="f1-light">{{localized.community.videos}}</h2>
<table class="table table-ruled table-full-width table-with-spacious-first-column mb-7">
{{#each items}}
{{#if this.isVideo}}
<tr>
<td>
<a href="{{ this.href }}">{{ this.name }}</a>
</td>
</tr>
{{/if}}
{{/each}}
</table>
<p class="mt-3 mt-md-6">
{{{localized.community.awesome_notice}}}
</p>
<h2 id="meetups" class="mt-7 f1-light">{{localized.community.meetups}}</h2>
<table class="table table-ruled table-full-width table-with-spacious-first-column mb-7">
{{#each meetups}}
<tr>
<td>
<a href="{{ href }}">{{ name }}</a>
</td>
<td>
{{ location }}, {{ country }}
</td>
</tr>
{{/each}}
</table>
<p class="mt-3 mt-md-6">
{{{localized.community.meetup_notice}}}
</p>
</div>
</div>
</main>