Skip to content

Commit

Permalink
school: port to jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusae committed Aug 23, 2011
1 parent e375586 commit d71b332
Show file tree
Hide file tree
Showing 17 changed files with 146 additions and 4,205 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_site/
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
permalink: none
32 changes: 32 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootstrap, from Twitter</title>
<meta name="description" content="">
<meta name="author" content="">

<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<!-- Le styles -->
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap-1.1.0.min.css">

</head>

<body>

<div class="container">

{{ content }}

<footer>
<p>&copy; Twitter 2011</p>
</footer>

</div> <!-- /container -->

</body>
</html>
5 changes: 5 additions & 0 deletions _posts/00-index.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Overview
---

h1. Overview

We think it makes the most sense to approach teaching Scala not as if
Expand Down
7 changes: 7 additions & 0 deletions _posts/01-lesson.textile → _posts/2011-05-01-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: basics.html
title: Basics
layout: default
desc: Covers basics of scala
---

h1. Lesson 1

Today we'll cover:
Expand Down
7 changes: 7 additions & 0 deletions _posts/02-lesson.textile → _posts/2011-05-02-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: basics2.html
title: Basics2
layout: default
desc: More basics - functional
---

h1. Lesson 2

Today we'll cover:
Expand Down
7 changes: 7 additions & 0 deletions _posts/03-lesson.textile → _posts/2011-05-03-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: collections.html
title: Collections
layout: default
desc: Covers basic collections
---

h1. Lesson 3

Today we'll cover:
Expand Down
8 changes: 8 additions & 0 deletions _posts/04-lesson.textile → _posts/2011-05-04-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
permalink: pattern-matching-and-functional-composition.html
title: Pattern matching & functional composition
layout: default
desc: More advanced functional stuff.
---


h1. Lesson 4

h2. Advanced Pattern Matching and Functional Composition
Expand Down
7 changes: 7 additions & 0 deletions _posts/05-lesson.textile → _posts/2011-05-05-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: type-basics.html
title: Type & polymorphism basics
layout: default
desc: Typing & polymorphism
---

h1. Lesson 5

h2. Type Basics
Expand Down
8 changes: 8 additions & 0 deletions _posts/06-lesson.textile → _posts/2011-05-06-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
permalink: type-contd.html
title: Types - continued
layout: default
desc: More types
---


h1. Lesson 6

h2. Types (Cont'd)
Expand Down
6 changes: 6 additions & 0 deletions _posts/07-lesson.textile → _posts/2011-05-07-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
permalink: sbt.html
title: Simple Build Tool
layout: default
desc: The (not so) simple build tool
---
h1. Lesson 7

Today we'll cover SBT! Specific topics include:
Expand Down
7 changes: 7 additions & 0 deletions _posts/08-lesson.textile → _posts/2011-05-08-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: coll2.html
title: More collections
layout: default
desc: Advanced scala collections.
---

h1. Lesson 8

h2. Collections
Expand Down
7 changes: 7 additions & 0 deletions _posts/09-lesson.textile → _posts/2011-05-09-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: specs.html
title: Testing with specs
layout: default
desc: Testing with specs
---

h1. Lesson 9


Expand Down
8 changes: 8 additions & 0 deletions _posts/10-lesson.textile → _posts/2011-05-10-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
permalink: concurrency.html
title: Concurrency in Scala
layout: default
desc: Concurrency
---


h1. Lesson 10

h1. Concurrency in Scala
Expand Down
7 changes: 7 additions & 0 deletions _posts/11-lesson.textile → _posts/2011-05-11-lesson.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: java.html
title: Java + Scala
layout: default
desc: Using Scala from Java
---

h1. Lesson 11

h1. Using Scala from Java
Expand Down
Loading

0 comments on commit d71b332

Please sign in to comment.