forked from crystal-lang/crystal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.haml
64 lines (56 loc) · 1.73 KB
/
index.haml
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
\---
\---
%section
%h1 Language Goals
%ul.goals
%li Have a syntax similar to Ruby (but compatibility with it is not a goal)
%li Statically type-checked but without having to specify the type of variables or method arguments.
%li Be able to call C code by writing bindings to it in Crystal.
%li Have compile-time evaluation and generation of code, to avoid boilerplate code.
%li Compile to efficient native code.
%section
%h1 How it looks
.code_section
{% include sample_code.md %}
%section
%h1 Status
%p
%ul.goals
%li The project is in alpha stage: we are still tweaking the language and standard library.
%li The compiler is written in Crystal.
%section.sponsors
%h1 Top Sponsors
.sponsors-list
%a(href="https://manas.tech/" target="_blank")
%img(src="/images/sponsors/manas.png" title="Manas")
%br
Manas Technology Solutions
%a(href="http://www.protel.com.tr" target="_blank")
%img(src="/images/sponsors/protel.png" title="Protel")
%br
Protel
%br
%a(href="https://openredis.com" target="_blank")
%img(src="/images/sponsors/openredis.png" title="openredis")
%br
openredis
%br
%div.footer
%a.all-sponsors(href="/sponsors") Meet all our sponsors
%section
%h1 Community
%p
:markdown
Crystal wouldn't be the same without the great community that gathered around it. And you can be part of it, too.
You can [check here](/community/) how to get involved.
%section
%h1#blog Entries from our blog
.blog_roll
{% for post in site.posts %}
%article
.thumbnail
%p {{ post.thumbnail }}
%h3
%a{href: "{{post.url}}"} {{ post.title }}
%p {{ post.summary }}
{% endfor %}