Skip to content

Commit

Permalink
Merge pull request startup-systems#66 from advanced-js/homepage-instr…
Browse files Browse the repository at this point in the history
…uctions

move student instructions to the homepage
  • Loading branch information
afeld committed Feb 4, 2016
2 parents 2aaf339 + 5ea5874 commit d353bbf
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 22 deletions.
14 changes: 1 addition & 13 deletions README.md
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/).
4 changes: 4 additions & 0 deletions _config.yml
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
9 changes: 0 additions & 9 deletions index.html → _includes/students.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
---
layout: default
---

<h1><a href="http://documentup.com/advanced-js/syllabus">Advanced JavaScript</a> Student Directory</h1>
<p>
<a href="https://github.com/advanced-js/students">Add yourself!</a>
</p>

<!-- based on http://git.io/vvroy -->
<ul>
{% assign students = site.data[site.current_term] | sort %}
Expand Down
23 changes: 23 additions & 0 deletions index.md
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 %}
4 changes: 4 additions & 0 deletions styles/screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ body {
margin: 50px;
}

p {
max-width: 600px;
}

a {
color: black;
}
Expand Down

0 comments on commit d353bbf

Please sign in to comment.