From e7dab48469ac779d639fff7e221c7b5a23ded148 Mon Sep 17 00:00:00 2001 From: Evan O'Connell Date: Sun, 18 Aug 2013 17:50:36 -0400 Subject: Removing files --- themes/throwback/include/functions.php | 56 ---------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 themes/throwback/include/functions.php (limited to 'themes/throwback/include/functions.php') diff --git a/themes/throwback/include/functions.php b/themes/throwback/include/functions.php deleted file mode 100644 index ead9d16..0000000 --- a/themes/throwback/include/functions.php +++ /dev/null @@ -1,56 +0,0 @@ -. - */ - - - /* EVERY THEME SHOULD HAVE THIS FILE WITH THE FUNCTIONS OPENCONTENT() & CLOSECONTENT() */ - - /** - * OpenContent() - * Opens a Bayonet site content block. - * @return - */ - function OpenContent() - { - echo "
"; - } - - /** - * CloseContent() - * Closes a Bayonet site content block. - * @return - */ - function CloseContent() - { - echo "
"; - } - - function OpenBlock($title = 'New Block') - { - OpenContent(); - echo "
{$title}
"; - echo "
"; - } - - function CloseBlock() - { - echo "
"; - CloseContent(); - } - -?> -- cgit