Jake Howard
97601a7b53
- Compress codebase - Remove duplicate bulky code - Use template directory to dictate sitemap
37 lines
1.9 KiB
HTML
37 lines
1.9 KiB
HTML
{% extends 'content_base.html' %}
|
|
|
|
{% block pageTitle %}Student Robotics 2015{% endblock %}
|
|
|
|
{% block content%}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<img class="img-rounded" src="https://farm1.staticflickr.com/737/20984044320_ccbba155f9_o.gif" />
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<p>Welcome to the homepage of Collyer's Student Robotics Team 2015 (The 'A' Team) - Creators of 'A.L.I.C.E'! Here you can see everything that goes on throughout the competition.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<h2>The Competition</h2>
|
|
<p>As was announced at kickstart, the game for this year is a take on the classic gamemode Capture the Flag. 4 teams compete over 5 flags to move as many of them as they can into their scoring zones. The person with the most flags in their scoring zone wins.</p>
|
|
<p>The 'flags' are 25cm cubes of wood on caster wheels weighing roughly 2kg. The rules prevent us from lifting them, so the idea is to drag them around!</p>
|
|
<p>To see a copy of the rules from the competition, <a href="https://www.studentrobotics.org/resources/2015/rulebook.pdf">Click Here!</a></p>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="list-group">
|
|
<a class="list-group-item active h4">Quick Links</a>
|
|
<a href="{% url 'robotics:2015-robot' %}" class="list-group-item">The Robot - A.L.I.C.E</a>
|
|
<a href="{% url 'robotics:2015-code'%}" class="list-group-item">The Code</a>
|
|
<a href="https://flic.kr/s/aHska26DoH" class="list-group-item">Gallery</a>
|
|
<a href="http://collyersstudentrobotics.blogspot.co.uk/" class="list-group-item">Blog</a>
|
|
<a href="https://www.studentrobotics.org/schools/game#2015" class="list-group-item">Competition Information</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|