sass-site/source/community.html.haml

95 lines
3.3 KiB
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
---
2015-04-02 01:51:37 +02:00
title: "#teamSass"
2018-10-24 00:06:39 +02:00
introduction: >
2015-04-02 01:51:37 +02:00
Sass has an awesome community of designers and developers who love to spread
2013-10-12 20:25:16 +02:00
the word and help people out. Here we’ve collected some resources.
Happy Styling!
2018-10-24 00:06:39 +02:00
---
2013-10-12 20:25:16 +02:00
2018-12-28 01:31:28 +01:00
:markdown
__Everyone is welcome in the Sass community, except those who are
2018-12-28 04:47:31 +01:00
unwelcoming__. Please read and follow our
[community guidelines](/community-guidelines).
2018-12-28 01:31:28 +01:00
2018-12-28 04:47:31 +01:00
Still __getting started__? There are some great [tutorials](#Tutorials)
2018-12-28 01:31:28 +01:00
out there to get you on your feet. Want to __learn more__? There's some
2018-12-28 04:47:31 +01:00
great [Sass blogs](#Blogs) (including
[a few particular articles](#Articles) we recommend reading), and even a
few [books about Sass](#Books) to help you learn some new tips and
tricks.
2018-12-28 01:31:28 +01:00
The Sass community is amazing. There are a number of
2018-12-28 04:47:31 +01:00
[frameworks](#Projects) that make using Sass simple. Want to try Sass in
Node, Python, or another framework? Check out the
[libSass resources](/libsass).
2018-12-28 01:31:28 +01:00
2018-12-28 04:47:31 +01:00
Thinking of __contributing__ to Sass itself? We rely on everyone to
keep Sass as stable as it is. Feel free to
[submit a patch via pull request](#Contribute) to the Sass project.
2018-12-28 01:31:28 +01:00
2018-12-28 04:47:31 +01:00
Want to create your own Sass implementation? Check out our
[implementation guidelines](/implementation).
2018-10-24 00:06:39 +02:00
%h2#Contribute Contribute
:markdown
2018-12-28 04:47:31 +01:00
2018-10-24 00:06:39 +02:00
Sass is an [open source project][github] and we encourage you to contribute.
2018-12-28 04:47:31 +01:00
You can contribute with [bug reports and feature requests][issues], and if
you contribute code, we'll love you forever. If you just want to help out
but you're not sure what to do, check out the "Help Wanted" label for [the
Sass language][lang help] or for [Dart Sass][dart help]. These issues
are a mix of feature requests, bugs, and tasks that aren't coding-intensive
that the developers think are a good place for someone new to the codebase
to jump in.
2018-10-24 00:06:39 +02:00
[github]: https://github.com/sass/sass
[issues]: https://github.com/sass/sass/issues
2018-12-28 04:47:31 +01:00
[lang help]: https://github.com/sass/sass/labels/Help%20Wanted
[dart help]: https://github.com/sass/dart-sass/labels/help%20wanted
2018-10-24 00:06:39 +02:00
2018-12-28 04:47:31 +01:00
[Dart Sass][] is the reference implementation of Sass, and the easiest
implementation to start hacking on. If you don't know Dart, don't worry!
It's very easy to pick up. Check out the [contributing info][] for more
information on helping out. Or, if you're interested in helping add new
features to the Sass language, look at [the language contribution
process][].
2018-10-24 00:06:39 +02:00
2018-12-28 04:47:31 +01:00
[Dart Sass]: /dart-sass
[contributing info]: https://github.com/sass/dart-sass/blob/master/CONTRIBUTING.md
[the language contribution process]: https://github.com/sass/language/blob/master/CONTRIBUTING.md
2018-10-24 00:06:39 +02:00
2013-10-14 22:56:15 +02:00
%hr/
2018-10-24 00:06:39 +02:00
2018-12-28 04:47:31 +01:00
- content_for :complementary do
2015-04-02 01:51:37 +02:00
%h2#Articles Sass Articles on the Web
2018-10-24 00:06:39 +02:00
2013-10-14 22:56:15 +02:00
%ul.articles
- for article in data.community.articles
%li
%h3= link_to article.name, article.url
%p= article.description
2018-10-24 00:06:39 +02:00
2013-10-12 20:25:16 +02:00
%h3#Tutorials Tutorials
%ul
- for tutorial in data.community.tutorials
%li= link_to tutorial.name, tutorial.url
2015-04-02 01:51:37 +02:00
%h3#Blogs Sass Blogs
2013-10-12 20:25:16 +02:00
%ul
- for blog in data.community.blogs
%li= link_to blog.name, blog.url
2015-04-02 01:51:37 +02:00
%h3#Books Sass Books
2013-10-12 20:25:16 +02:00
%ul
- for book in data.community.books
%li= link_to book.name, book.url
%h3#Projects Projects & Frameworks
%ul
- for project in data.community.projects
%li
= link_to project.name, project.url
—
= project.description