This theme is for Google Code Prettify which can be used to syntax highlight code within a <pre> tag.
To use, simply copy and paste the CSS from the source of this document into your project, and use with an existing code prettify setup. You can either add the 'theme-pastel' class each <pre> element, or just remove it from the CSS to style all of them.
Enjoy!
<?php
// app/controllers/ArticleController.php
class ArticleController extends BaseController
{
public function showIndex()
{
return View::make('index');
}
public function showSingle($articleId)
{
return View::make('single');
}
}