added stables.html

This commit is contained in:
Erin Braswell 2012-05-27 13:18:04 -04:00
parent 10d08a8f8a
commit e597b97aab

View File

@ -0,0 +1,41 @@
{% extends "base.html" %}
{% load static %}
{% block title %} Events {% endblock %}
{% block content %}
<header class="jumbotron subhead" id="overview">
<h1>Stables</h1>
<p class="lead">Every event that has taken place on RAW, Smackdown, and on PPVs, since the creation of this league.</p>
</header>
<table class="table">
<thead>
<tr>
<th>GM Punk</th>
<th>I'm AWEsome</th>
<th>COBRA!</th>
</tr>
</thead>
<tbody>
<tr>
<td>Raw 1</td>
<td>CM Punk</td>
<td>Brodus Clay</td>
<td>Santino</td>
</tr>
<tr>
<td>Raw 2</td>
<td>Kane</td>
<td>John Cena</td>
<td>Dolph Ziggler</td>
</tr>
<tr>
<td>Raw 3</td>
<td>R Truth</td>
<td>Chris Jericho</td>
<td>Kofi Kingston</td>
</tr>
</tbody>
</table>
{% endblock %}