/app/views/basics/index.html.erb

http://railssample000.googlecode.com/ · Ruby HTML · 71 lines · 66 code · 5 blank · 0 comment · 0 complexity · 9c8c86b1dd26c84f2d4d413120a865e7 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  4. <head>
  5. <title>Web08 - Home</title>
  6. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  7. <style type="text/css">
  8. body
  9. {
  10. text-align: center;
  11. }
  12. div#container
  13. {
  14. margin-left: auto;
  15. margin-right: auto;
  16. width: 50em;
  17. text-align: left;
  18. }
  19. div#left
  20. {
  21. width: 50%;
  22. float: left;
  23. }
  24. div#right
  25. {
  26. margin-left: 50%;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <center>
  32. <div id="container">
  33. <div id="left">
  34. <h2>Web08</h2>
  35. <table><tr><td><u>Members</u></td><td><u>ID</u></td></tr>
  36. <tr><td>M.Ravi</td><td>st111222</td></tr>
  37. <tr><td>Orathai Dumrongsukniwat</td><td>st111002</td></tr>
  38. <tr><td>Peruma H. S. S. Wijayarathna</td><td>st111445</td></tr>
  39. </table>
  40. </div>
  41. <div id="right" align="left" style="padding-top:20px;padding-left:100px;">
  42. <%= link_to "Problem Set 1: Basics", :action => "indexPS1" %><br/>
  43. <%= link_to "Problem Set 2", :controller => "basics", :action => "quotations" %><br/>
  44. Problem Set 3<br/>
  45. <ul>
  46. <li><%= link_to "Database Dump", :action => "showDBDump" %></li>
  47. <li><%= link_to "Documentation", :action => "documentation" %></li>
  48. </ul>
  49. Problem Set 4<br/>
  50. <ul>
  51. <li><%= link_to "Tourist Community Site", :controller => "site", :action => "index" %></li>
  52. <li><%= link_to "Documentation", :controller => "site", :action => "documentation" %></li>
  53. </ul>
  54. </div>
  55. </div>
  56. <div style="clear: both;padding-top: 100px; padding-bottom: 100px;" align="center" >
  57. <table><tr>
  58. <td style='padding: 6px; valign:center;'><a href="http://web8.cs.ait.ac.th/basics/references">References</a></td>
  59. <td style='padding: 6px; valign:center;'><a href="http://web8.cs.ait.ac.th/cc">Continuous Integration</a></td>
  60. <td style='valign:center;'><a href="http://validator.w3.org/check/referer"><img height="31" width="88" alt="Valid XHTML 1.0!" src="http://www.w3.org/Icons/valid-xhtml10" /></a></td></tr>
  61. <tr><td colspan="5" align="center"><a href="mailto:nu_eat57@hotmail.com">Orathai</a>&nbsp;&nbsp;<a href="mailto:mondi.ravi@gmail.com">Ravi</a>&nbsp;&nbsp;<a href="mailto:st111445@ait.ac.th">Sharm</a></td></tr>
  62. </table>
  63. </div>
  64. </center>
  65. </body>
  66. </html>