This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Load the Theme class. */ | |
require_once (get_stylesheet_directory() . '/framework/theme.php'); | |
$theme = new Theme(); | |
$options = include(get_template_directory() . '/framework/info.php'); | |
$options['theme_child_name'] = 'Striking Child'; | |
$options['theme_slug'] = 'striking'; | |
$theme->init($options); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* TimThumb by Ben Gillbanks and Mark Maunder | |
* Based on work done by Tim McDaniels and Darren Hoyt | |
* http://code.google.com/p/timthumb/ | |
* | |
* GNU General Public License, version 2 | |
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html | |
* | |
* Examples and documentation available on the project homepage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace app\models; | |
class Comments extends \lithium\data\Model { | |
public $validates = array(); | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jquery.tweet.js - See http://tweet.seaofclouds.com/ or https://github.com/seaofclouds/tweet for more info | |
// Copyright (c) 2008-2011 Todd Matthews & Steve Purcell | |
(function($) { | |
$.fn.tweet = function(o){ | |
var s = $.extend({ | |
username: null, // [string or array] required unless using the 'query' option; one or more twitter screen names (use 'list' option for multiple names, where possible) | |
list: null, // [string] optional name of list belonging to username | |
favorites: false, // [boolean] display the user's favorites instead of his tweets | |
query: null, // [string] optional search query (see also: http://search.twitter.com/operators) | |
avatar_size: null, // [integer] height and width of avatar if displayed (48px max) |