-
Notifications
You must be signed in to change notification settings - Fork 11
/
movies.html
39 lines (38 loc) · 985 Bytes
/
movies.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: default
title: Get To Know GitHub
movies:
- name: Flight
starring: Denzel Washington
- name: Iron Man 1 & 3
starring: Robert Downy, Jr.
- name: You Don't Know Jack
starring: Al Pacino
- name: Stand By Me
starring: Kiefer Sutherland, River Phoenix, Corey Feldman, Wil Wheaton
- name: Old School
starring: Will Ferrell
- name: The House of Yes
starring: Parker Posey
- name:Star Trek: Into Darknes
Best of all the Star Trek productions
- name: Birdemic (if you enjoy good bad movies)
starring: Alan Bagh
- name: Fight Club
starring: Brad Pitt & Edward Norton
- name: Bill & Ted's Excellent Adventure
starring: Keanu Reeves
- name: Raising Arizona
starring: Tex Cobb
---
<div id="home">
<h1>Movies you should really watch:</h1>
<ul class="movies">
{% for movie in page.movies %}
<li>
<h2>{{movie.name}}</h2>
starring {{movie.starring}}
</li>
{% endfor %}
</ul>
</div>