2014-01-20 21:36:28 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Roller Derby Logos</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<style type="text/css">
|
|
|
|
#gallery {
|
2014-01-20 23:13:41 -07:00
|
|
|
background-color: black;
|
2014-01-20 21:36:28 -07:00
|
|
|
}
|
|
|
|
#gallery div {
|
|
|
|
margin:2px;
|
|
|
|
height:auto;
|
|
|
|
width:auto;
|
|
|
|
display: inline-block;
|
|
|
|
text-align:center;
|
|
|
|
max-width: 12em;
|
|
|
|
}
|
|
|
|
#gallery img
|
|
|
|
{
|
2014-01-20 23:13:41 -07:00
|
|
|
background: url(live/res/checkerboard.png) #282;
|
2014-01-20 21:36:28 -07:00
|
|
|
display:inline;
|
|
|
|
float: none;
|
|
|
|
margin:3px;
|
|
|
|
border:3px solid black;
|
|
|
|
max-width: 10em;
|
|
|
|
max-height: 10em;
|
|
|
|
}
|
|
|
|
</style>
|
2014-01-20 23:13:41 -07:00
|
|
|
<script type="text/javascript" src="live/logos/logos.js"></script>
|
2014-01-20 21:36:28 -07:00
|
|
|
<script type="text/javascript">
|
|
|
|
function gallery() {
|
|
|
|
var g = document.getElementById("gallery");
|
|
|
|
|
|
|
|
for (tn in teams) {
|
|
|
|
var team = teams[tn];
|
|
|
|
var i = document.createElement("img");
|
|
|
|
|
2014-01-20 23:13:41 -07:00
|
|
|
i.setAttribute("src", "live/logos/" + team[1]);
|
|
|
|
i.setAttribute("alt", team[2]);
|
|
|
|
i.setAttribute("title", team[2]);
|
2014-01-20 21:36:28 -07:00
|
|
|
|
2014-01-20 23:13:41 -07:00
|
|
|
g.appendChild(i);
|
2014-01-20 21:36:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.onload = gallery;
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2014-01-20 23:13:41 -07:00
|
|
|
<h1 id="title">Roller Derby Logo Gallery</h1>
|
2014-01-20 21:36:28 -07:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Here are the logos currently shipping with the
|
2014-01-21 13:16:21 -07:00
|
|
|
free <a href="/scoreboard/">Woozle Scoreboard</a>. If you'd like
|
2014-01-20 21:36:28 -07:00
|
|
|
yours added, email your team name, preferred short name, and logo
|
|
|
|
to <a href="mailto:neale@woozle.org">neale@woozle.org</a>.
|
|
|
|
</p>
|
|
|
|
<div id="gallery"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|