Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point to Open Source Friday #402

Merged
merged 1 commit into from
Jun 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _articles/how-to-contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,10 @@ You might scan a README and find a broken link or a typo. Or you're a new user a

> [28% of casual contributions](http://www.igor.pro.br/publica/papers/saner2016.pdf) to open source are documentation, such as a typo fix, reformatting, or writing a translation.

You can also use one of the following resources to help you discover new projects:
You can also use one of the following resources to help you discover and contribute to new projects:

* [GitHub Explore](https://github.com/explore/)
* [Open Source Friday](https://opensourcefriday.com)
* [First Timers Only](http://www.firsttimersonly.com/)
* [Your First PR](https://yourfirstpr.github.io/)
* [CodeTriage](https://www.codetriage.com/)
Expand Down
8 changes: 8 additions & 0 deletions assets/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,11 @@

$(selector).wrapInner('<span/>');
})();

(function() {
var FRIDAY = 5;
var today = new Date();
if (FRIDAY == today.getDay()) {
$("#opensourcefriday").show();
}
})();
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ <h1 class="alt-h1">Open Source Guides</h1>
<p class="alt-lead text-gray mb-md-5 col-md-8 mx-auto">
Open source software is made by people just like you. Learn how to launch and grow your project.
</p>
<p class="alt-lead" id="opensourcefriday" style="display:none">
It's Friday! Invest a few hours contributing to the software you use and love:
<a href='https://opensourcefriday.com'>opensourcefriday.com</a>
</p>
</div>
</header>

Expand Down