Advertisement
Guest User

Untitled

a guest
Apr 4th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Roster Page
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  9.  
  10. <?php the_title(); ?>
  11.  
  12. <?php the_content(); ?>
  13. <table class="team_table_results" summary="Los Angeles Dodgers Active Roster" width="100%" border="2" cellspacing="0"><caption>Showcase Baseball Active Roster</caption><colgroup> <col id="jerseynumCol" /> <col id="playernameCol" /> <col id="batthrowCol" /> <col id="heightCol" /> <col id="weightCol" /> <col id="dobCol" /> </colgroup>
  14. <thead>
  15. <tr>
  16. <th>#</th>
  17. <th class="playernameHead">Name</th>
  18. <th>B/T</th>
  19. <th>Ht</th>
  20. <th>Wt</th>
  21. <th>DOB</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <tr>
  26. <td>61</td>
  27. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=277417">A</a>lonzo Montoya</td>
  28. <td>R-R</td>
  29. <td>6'5"</td>
  30. <td>225</td>
  31. <td>May 15, 1980</td>
  32. </tr>
  33. <tr>
  34. <td>51</td>
  35. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=430613">A</a>nthony Cedillo</td>
  36. <td>R-R</td>
  37. <td>6'3"</td>
  38. <td>240</td>
  39. <td>Dec 31, 1982</td>
  40. </tr>
  41. <tr>
  42. <td>58</td>
  43. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=451532">K</a>emet Brown</td>
  44. <td>R-R</td>
  45. <td>6'1"</td>
  46. <td>240</td>
  47. <td>Jul 29, 1984</td>
  48. </tr>
  49. <tr>
  50. <td>35</td>
  51. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=425626">A</a>ndrew Gully</td>
  52. <td>L-L</td>
  53. <td>6'3"</td>
  54. <td>215</td>
  55. <td>Aug 19, 1978</td>
  56. </tr>
  57. <tr>
  58. <td>57</td>
  59. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=455092">Scott Elbert</a></td>
  60. <td>L-L</td>
  61. <td>6'2"</td>
  62. <td>220</td>
  63. <td>Aug 13, 1985</td>
  64. </tr>
  65. <tr>
  66. <td>59</td>
  67. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=543155">Stephen Fife</a></td>
  68. <td>R-R</td>
  69. <td>6'3"</td>
  70. <td>220</td>
  71. <td>Oct 4, 1986</td>
  72. </tr>
  73. <tr>
  74. <td>21</td>
  75. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=425844">Zack Greinke</a></td>
  76. <td>R-R</td>
  77. <td>6'2"</td>
  78. <td>195</td>
  79. <td>Oct 21, 1983</td>
  80. </tr>
  81. <tr>
  82. <td>55</td>
  83. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=407825">Matt Guerrier</a></td>
  84. <td>R-R</td>
  85. <td>6'3"</td>
  86. <td>195</td>
  87. <td>Aug 2, 1978</td>
  88. </tr>
  89. <tr>
  90. <td>41</td>
  91. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=421685">Aaron Harang</a></td>
  92. <td>R-R</td>
  93. <td>6'7"</td>
  94. <td>260</td>
  95. <td>May 9, 1978</td>
  96. </tr>
  97. <tr>
  98. <td>56</td>
  99. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=434442">J.P. Howell</a></td>
  100. <td>L-L</td>
  101. <td>6'0"</td>
  102. <td>185</td>
  103. <td>Apr 25, 1983</td>
  104. </tr>
  105. <tr>
  106. <td>74</td>
  107. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=445276">Kenley Jansen</a></td>
  108. <td>S-R</td>
  109. <td>6'5"</td>
  110. <td>260</td>
  111. <td>Sep 30, 1987</td>
  112. </tr>
  113. <tr>
  114. <td>22</td>
  115. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=477132">Clayton Kershaw</a></td>
  116. <td>L-L</td>
  117. <td>6'3"</td>
  118. <td>220</td>
  119. <td>Mar 19, 1988</td>
  120. </tr>
  121. <tr>
  122. <td>31</td>
  123. <td><a href="http://dodgers.mlb.com/team/player.jsp?player_id=434181">Brandon League</a></td>
  124. <td>R-R</td>
  125. <td>6'2"</td>
  126. <td>215</td>
  127. <td>Mar 16, 1983</td>
  128. </tr>
  129. </tbody>
  130. <thead></thead>
  131. </table>
  132. <?php get_sidebar(); ?>.
  133.  
  134. <?php endwhile; endif; ?>
  135.  
  136. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement