⌈⌋ ⎇ branch:  freshcode


Artifact [57b5a22709]

Artifact 57b5a227093cce0f57d9a0f8a38862765333f946:

  • File page_error.php — part of check-in [31d71afbdb] at 2014-07-19 00:19:15 on branch trunk — Trivial error message page. (user: mario size: 710)

<?php
/**
 * type: page
 * title: Error info
 * description: Generic error page
 * version: 0.1
 * license: -
 *
 * Frontpage.
 * Just shows the most recent projects and their released versions.
 *
 * Shows:
 *   → Recent projects and their released versions.
 *   → Visually trimmed descriptions and changelogs.
 *   → Small boxed tags.
 * Sidebar:
 *   → Newsfeeds (e.g. linux.com, /r/linux)
 * HTML:
 *   → RSS/Atom links for update feed comprised of all projects.
 *
 */


include("template/header.php");
?> <section id=main> <?php

print "<h2>Error</h2>\n";

print isset($error) ? "<p>$error</p>" : "<p>Some problem occured (entry not accessible etc.)</p>";


include("template/bottom.php");

?>