generated from TryGhost/Starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
home.hbs
140 lines (136 loc) · 5.83 KB
/
home.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
129
130
131
132
133
134
135
136
137
138
139
140
{{!< default}}
<div class="padded-container">
<div class="upcoming">
{{#get "posts" limit="3" filter="featured:true"}}
{{#foreach posts}}
<div class="homepage-featured">
<a href="{{url}}">{{title}}</a>
</div>
{{/foreach}}
{{/get}}
</div>
<div class="main-grid">
<div>
<section id="blurb">
<div class="icon-box"></div>
<p>
Ruby Central is a non-profit organization dedicated to supporting the worldwide Ruby community. We organize the annual RubyConf and RailsConf software conferences, support community growth, and provide vital infrastructure for the Ruby programming language.
</p>
<p>{{#link href="/history"}}Learn more about us.{{/link}}</p>
</section>
<section id="rubygems">
<div class="section-header">
<div class="icon-box"></div>
<h3>RubyGems</h3>
<img src="{{asset "images/arrow.svg"}}" class="arrow">
</div>
<p>
RubyGems is the code-packaging system for the Ruby community.
Started as a project in 2004 by the directors of Ruby Central and
friends, RubyGems has grown into an invaluable and wide-ranging
resource for the sharing of code among all members of the community.
With hosting support by Ruby Central, more information can be found
at <a href="https://rubygems.org">rubygems.org</a>.
</p>
</section>
</div>
<div>
<section id="support">
<div class="section-header">
<div class="icon-box"></div>
<h3>Supporting Ruby Central, Inc</h3>
<img src="{{asset "images/arrow.svg"}}" class="arrow">
</div>
<p>
The Ruby language could only have developed so robustly with its dedicated community. Our community consists of talented and passionate individual developers and many dynamic companies that recognize the value of helping foster a strong, sustainable environment for Ruby development. Join our {{#link href="/#/portal/signup"}}Member Community{{/link}}, <strong>Become a Sponsor</strong>, or {{#link href="/leadership"}}donate your time{{/link}} – there are numerous ways to {{#link href="/support"}}Support Us{{/link}}!
</p>
<br>
<p>
If you are looking for ways to help or have questions, please contact us at {{#link href="mailto:contact@rubycentral.org"}}contact@rubycentral.org{{/link}}.
</p>
</section>
<section id="conferences">
<h3>42 Conferences and counting.</h3>
</section>
</div>
</div>
<div class="main-grid">
<div>
<section id="rubyconf" class="light-background">
<div class="section-header">
<div class="icon-box"></div>
<h3>RubyConf</h3>
<img src="{{asset "images/darkarrow.svg"}}" class="arrow">
</div>
<p>
<a href="https://rubyconf.org">RubyConf</a> is the Ruby community’s
annual celebration of all things Ruby! Every fall, we gather Ruby
enthusiasts together to enjoy detailed talks about exciting new
projects; meet and network with other Ruby developers; and hear from
the community’s leading minds, including Yukihiro Matsumoto
("Matz"), the creator of the Ruby language.
</p>
<p>{{#link href="/conferences"}}Learn more{{/link}}</p>
</section>
</div>
<div>
<section id="railsconf" class="light-background">
<div class="section-header">
<div class="icon-box"></div>
<h3>RailsConf</h3>
<img src="{{asset "images/darkarrow.svg"}}" class="arrow">
</div>
<p>
<a href="https://railsconf.org">RailsConf</a> is the world’s largest
gathering of Rails developers, brought together to further
discussion and learning about building, managing, and testing Rails
applications. With a specific focus on Rails, conference topics can
range from new users to administration to advanced techniques.
</p>
<p>{{#link href="/conferences"}}Learn more{{/link}}</p>
</section>
</div>
</div>
</div>
<div id="about">
<div class="content padded-container">
<div id="directors">
<div class="icon-box"></div>
<h3>Directors</h3>
<ul class="people">
{{#get "pages" order="title asc" filter="tags:hash-director" limit="all"}}
{{#foreach pages}}
{{> "person"}}
{{else}}
<p>Create a page for each director, title the post with their name, set the featured image to their profile picture, and put an optional link in the page content. Add the tag <code>#director</code> for them to show up here.</p>
{{/foreach}}
{{/get}}
</ul>
</div>
<div id="staff">
<div class="icon-box"></div>
<h3>Staff</h3>
<ul class="people">
{{#get "pages" order="featured desc, title asc" filter="tags:hash-staff" limit="all"}}
{{#foreach pages}}
{{> "person"}}
{{else}}
<p>Create a page for each staff member, title the post with their name, set the featured image to their profile picture, and put an optional link in the page content. Add the tag <code>#staff</code> for them to show up here.</p>
{{/foreach}}
{{/get}}
</ul>
</div>
<div id="oss-team">
<h3>Open Source Team</h3>
<ul class="people">
{{#get "pages" order="featured desc, title asc" filter="tags:hash-oss-team" limit="all"}}
{{#foreach pages}}
{{> "person"}}
{{else}}
<p>Create a page for each open source team member, title the post with their name, set the featured image to their profile picture, and put an optional link in the page content. Add the tag <code>#oss-team</code> for them to show up here.</p>
{{/foreach}}
{{/get}}
</ul>
</div>
</div>
</div>