Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

29 rindas
745B

  1. $def with (nav, categories, open_projects)
  2. <head>
  3. <title>Beelance2</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="static/stylesheet.css">
  6. <link rel="shortcut icon" type="image/png" href="static/honeybee.png"/>
  7. </head>
  8. <body>
  9. $:nav
  10. <h1 class="title">Open Projects:</h1>
  11. <div class="categories">
  12. $for category in categories:
  13. <div class="category" onclick="location.href='/my_projects?categoryid=$category[0]'">$category[1]</div>
  14. </div>
  15. <div class="projects">
  16. $for project in open_projects:
  17. <div class="project"><h4>$project[3]</h4><p>$project[4]</p></div>
  18. </div>
  19. <img src="static/honeybee.png" alt="Honeybee">
  20. </body>