A programing game inspired by Corewar / Darwin
 <!DOCTYPE html>
<html lang="en">
<head>
  <title>Moonwars</title>
</head>
	<body>
		<h1>Moonwars</h1>
		<h2>Warriors</h2>
		<div id="warrior-list">
			{% for warrior in warriors %}
			<div class="warrior">
				<h3>{{ warrior.name }}</h3>
				<p>{{ warrior.description }}</p>
			</div>
			{% endfor %}
		</div>
	</body>
</html>