⌈⌋ ⎇ branch:  freshcode


Artifact [8d152e45fc]

Artifact 8d152e45fc6b3407e28fd1c1c9b528dd00c7b69d:

  • File page_tags.php — part of check-in [2e1e35664b] at 2014-06-25 06:10:43 on branch trunk — Initial website implementation: project submit, index listing, projects/ page, and moderation flags. (user: mario size: 556)

<?php
/**
 * type: page
 * title: Tags
 * description: Tag cloud
 * status: todo 
 *
 * We'll need a separate `tags` table for that, populated by a cron
 * script (or trigger?) that splits up the `release`.`tags` column
 * per project id.
 * Display may just be handled by page_index, with an extra search
 * param (?tag=...; a ?user= query is needed as well).
 *
 */


include("layout_header.php");
?>
<section id=main>

<h2>Tags</h2>

<p>
   There are still too few project listings to warrant a tag cloud.
</p>

<?php

include("layout_bottom.php");


?>