Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
website
Commits
cc13f82a
Unverified
Commit
cc13f82a
authored
6 years ago
by
Jeremy Soller
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request
#185
from wizofe/feat/add-rsoc-countdown
Add RSoC countdown timer
parents
38bdb218
8bd3b8a1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/rsoc.md
+29
-0
29 additions, 0 deletions
content/rsoc.md
with
29 additions
and
0 deletions
content/rsoc.md
+
29
−
0
View file @
cc13f82a
...
@@ -2,6 +2,35 @@
...
@@ -2,6 +2,35 @@
title = "Redox Summer of Code"
title = "Redox Summer of Code"
+++
+++
## Estimated time remaining for the results
<h1
id=
"countdown"
>
<
<script>
var target_date = new Date("May 5, 2018").getTime();
var days, hours, minutes, seconds;
var countdown = document.getElementById("countdown");
setInterval(function () {
var current_date = new Date().getTime();
var seconds_left = (target_date - current_date) / 1000;
days = parseInt(seconds_left / 86400);
seconds_left = seconds_left % 86400;
hours = parseInt(seconds_left / 3600);
seconds_left = seconds_left % 3600;
minutes = parseInt(seconds_left / 60);
seconds = parseInt(seconds_left % 60);
countdown.innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
}, 1000);
</script>
</h1>
**
Applications for the 2018 Redox Summer of Code will no longer be accepted. We
**
Applications for the 2018 Redox Summer of Code will no longer be accepted. We
are in the process of evaluating the applications and will have results
are in the process of evaluating the applications and will have results
available some time before May 5th, 2018.
**
available some time before May 5th, 2018.
**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment