forked from startup-systems/students
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request startup-systems#66 from advanced-js/homepage-instr…
…uctions move student instructions to the homepage
- Loading branch information
Showing
5 changed files
with
32 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
# Student directory [![Build Status](https://travis-ci.org/advanced-js/students.svg?branch=gh-pages)](https://travis-ci.org/advanced-js/students) | ||
|
||
Repository for practicing doing pull requests. Introduce yourself via a `GITHUB_USERNAME.json` file under the appropriate [`_data/TERM_YEAR/`](_data/) directory, and submit via pull request. Here's an example: | ||
|
||
```javascript | ||
// _data/spring_2015/afeld.json | ||
{ | ||
"emoji": "dancer", | ||
"introduction": "Developer at 18F by day, dancer by night." | ||
} | ||
``` | ||
|
||
Using the format above, replace with your own `emoji` (choose from [this list](http://www.emoji-cheat-sheet.com/)) and `introduction`. | ||
|
||
***Teachers: see the [meta](meta.md) file for usage instructions.*** | ||
This repository is for practicing doing pull requests. Teachers: see the [meta](meta.md) file for usage instructions. There's also a simpler version at [osscommunity.github.io/pr-practice/](http://osscommunity.github.io/pr-practice/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
exclude: | ||
- vendor | ||
current_term: fall_2015 | ||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
highlighter: rouge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
# [Advanced JavaScript](http://documentup.com/advanced-js/syllabus) Student Directory | ||
|
||
## Adding yourself | ||
|
||
Students, introduce yourself via a `GITHUB_USERNAME.json` file under the [`_data/{{ site.current_term }}/`](https://github.com/advanced-js/students/tree/gh-pages/_data/{{ site.current_term }}) directory, and submit via pull request. Here's an example: | ||
|
||
```javascript | ||
// _data/{{ site.current_term }}/afeld.json | ||
{ | ||
"emoji": "dancer", | ||
"introduction": "Developer at 18F by day, dancer by night." | ||
} | ||
``` | ||
|
||
Using the format above, replace with your own `emoji` (choose from [this list](http://www.emoji-cheat-sheet.com/)) and `introduction`. Note that we'll do this in the first class, using the same [workflow](http://advanced-js.github.io/syllabus/#workflow) that will be used for all assignments. | ||
|
||
## Students | ||
|
||
{% include students.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ body { | |
margin: 50px; | ||
} | ||
|
||
p { | ||
max-width: 600px; | ||
} | ||
|
||
a { | ||
color: black; | ||
} | ||
|