|
|
|
@@ -1,4 +1,4 @@ |
|
|
|
$def with (nav, categories, projects) |
|
|
|
$def with (nav, categories, open_projects) |
|
|
|
|
|
|
|
<head> |
|
|
|
<title>Beelance2</title> |
|
|
|
@@ -13,13 +13,13 @@ $def with (nav, categories, projects) |
|
|
|
|
|
|
|
<h1 class="title">Open Projects:</h1> |
|
|
|
|
|
|
|
<div id="categories"> |
|
|
|
<div class="categories"> |
|
|
|
$for category in categories: |
|
|
|
<div class="category" onclick="location.href='/?categoryid=$category[0]'">$category[1]</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="projects"> |
|
|
|
$for project in projects: |
|
|
|
$for project in open_projects: |
|
|
|
<div class="project"><h4>$project[3]</h4><p>$project[4]</p></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|