self::$fenom->display($layout.'.html', compact('content'));
$content = $fenom->fetch($this->path, $this->data);
CREATE TABLE IF NOT EXISTS `entries` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`stamp` TIMESTAMP NOT NULL,
`name` CHAR(30) CHARACTER SET utf8 NOT NULL,
`desc` TEXT CHARACTER SET utf8 NOT NULL,
`creator` CHAR(30) CHARACTER SET utf8 NOT NULL,
`price` INT(10) NOT NULL,
`weight` REAL(5,2) NOT NULL,
`material` CHAR(30) CHARACTER SET utf8 NOT NULL,
`made` CHAR(30) CHARACTER SET utf8 NOT NULL,
`size` REAL(5,2) NOT NULL,
`condition` CHAR(30) NOT NULL,
PRIMARY KEY (`id`)
)