Changed file structure to expand to NPA in general.

This commit is contained in:
mattbk
2015-07-09 13:44:05 -05:00
parent f8c385d192
commit d7ee6170b5
13 changed files with 0 additions and 0 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,48 @@
name = Metro Zymphonies Theme SUB
description = Sub by Matt BK for NPA. Developed by <a href="http://www.zymphonies.com">Zymphonies</a> & Designed by <a href="http://www.freebiezz.com">FreeBiezz</a>.<br/>For free theme support, installation, bug reporting <a href="http://www.freebiezz.com/forums/zymphonies-free-theme-discussion" rel="nofollow">support forum</a><br/>Contact us for Drupal Design & Development <a href="mailto:info@zymphonies.com">info@zymphonies.com</a>
core = 7.x
base theme = metro_zymphonies_theme
engine = phptemplate
stylesheets[all][] = css/style.css
regions[user_menu] = User menu region
regions[slideshow] = Slideshow region
regions[front_welcome] = Front welcome region
regions[top_first] = First top region
regions[top_second] = Second top region
regions[top_third] = Third top region
regions[sidebar_first] = First sidebar region
regions[sidebar_second] = Second sidebar region
regions[content] = Content region
regions[highlights] = Highlights region
regions[bottom_widget_1] = First bottom region
regions[bottom_widget_2] = Second bottom region
regions[bottom_widget_3] = Third bottom region
regions[footer_first] = First footer region
regions[footer_second] = Second footer region
regions[footer_third] = Third footer region
regions[footer_forth] = Forth footer region
features[] = logo
features[] = name
features[] = slogan
features[] = node_user_picture
features[] = comment_user_picture
features[] = comment_user_verification
features[] = favicon
features[] = main_menu
features[] = secondary_menu
settings[color_scheme] = Color
settings[breadcrumbs] = 0
settings[social_links] = 1
settings[twitter_url] = "https://twitter.com/shanidkv"
settings[facebook_url] = "https://www.facebook.com/zymphonies"
settings[gplus_profile_url] = "https://plus.google.com/u/0/115285675336265767735/"
settings[linkedin_profile_url] = "https://www.linkedin.com/company/zymphonies"
settings[pinterest_profile_url] = "http://www.pinterest.com/shanidkv/"
settings[youtube_profile_url] = "http://www.youtube.com"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -0,0 +1,115 @@
<?php
/**
* @file
* Default theme implementation to display a node.
*
* Available variables:
* - $title: the (sanitized) title of the node.
* - $content: An array of node items. Use render($content) to print them all, or
* print a subset such as render($content['field_example']). Use
* hide($content['field_example']) to temporarily suppress the printing of a
* given element.
* - $user_picture: The node author's picture from user-picture.tpl.php.
* - $date: Formatted creation date. Preprocess functions can reformat it by
* calling format_date() with the desired parameters on the $created variable.
* - $name: Themed username of node author output from theme_username().
* - $node_url: Direct url of the current node.
* - $terms: the themed list of taxonomy term links output from theme_links().
* - $display_submitted: whether submission information should be displayed.
* - $classes: String of classes that can be used to style contextually through
* CSS. It can be manipulated through the variable $classes_array from
* preprocess functions. The default values can be one or more of the following:
* - node: The current template type, i.e., "theming hook".
* - node-[type]: The current node type. For example, if the node is a
* "Blog entry" it would result in "node-blog". Note that the machine
* name will often be in a short form of the human readable label.
* - node-teaser: Nodes in teaser form.
* - node-preview: Nodes in preview mode.
* The following are controlled through the node publishing options.
* - node-promoted: Nodes promoted to the front page.
* - node-sticky: Nodes ordered above other non-sticky nodes in teaser listings.
* - node-unpublished: Unpublished nodes visible only to administrators.
* - $title_prefix (array): An array containing additional output populated by
* modules, intended to be displayed in front of the main title tag that
* appears in the template.
* - $title_suffix (array): An array containing additional output populated by
* modules, intended to be displayed after the main title tag that appears in
* the template.
*
* Other variables:
* - $node: Full node object. Contains data that may not be safe.
* - $type: Node type, i.e. story, page, blog, etc.
* - $comment_count: Number of comments attached to the node.
* - $uid: User ID of the node author.
* - $created: Time the node was published formatted in Unix timestamp.
* - $classes_array: Array of html class attribute values. It is flattened
* into a string within the variable $classes.
* - $zebra: Outputs either "even" or "odd". Useful for zebra striping in
* teaser listings.
* - $id: Position of the node. Increments each time it's output.
*
* Node status variables:
* - $view_mode: View mode, e.g. 'full', 'teaser'...
* - $teaser: Flag for the teaser state (shortcut for $view_mode == 'teaser').
* - $page: Flag for the full page state.
* - $promote: Flag for front page promotion state.
* - $sticky: Flags for sticky post setting.
* - $status: Flag for published status.
* - $comment: State of comment settings for the node.
* - $readmore: Flags true if the teaser content of the node cannot hold the
* main body content.
* - $is_front: Flags true when presented in the front page.
* - $logged_in: Flags true when the current user is a logged-in member.
* - $is_admin: Flags true when the current user is an administrator.
*
* Field variables: for each field instance attached to the node a corresponding
* variable is defined, e.g. $node->body becomes $body. When needing to access
* a field's raw values, developers/themers are strongly encouraged to use these
* variables. Otherwise they will have to explicitly specify the desired field
* language, e.g. $node->body['en'], thus overriding any language negotiation
* rule that was previously applied.
*
* @see template_preprocess()
* @see template_preprocess_node()
* @see template_process()
*/
?>
<?php if (!$page): ?>
<article id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
<?php endif; ?>
<?php if (!$page): ?>
<header>
<?php endif; ?>
<?php print render($title_prefix); ?>
<?php if (!$page): ?>
<h2 class="title" <?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php if (!$page): ?>
</header>
<?php endif; ?>
<div class="content <?php print $classes_array['1']; ?>"<?php print $content_attributes; ?>>
<?php
// Hide comments, tags, and links now so that we can render them later.
hide($content['comments']);
hide($content['links']);
print render($content);
?>
</div>
<?php if ($display_submitted): ?>
<span class="submitted"><?php print $submitted; ?></span>
<?php endif; ?>
<?php if (!empty($content['links'])): ?>
<footer>
<?php print render($content['links']); ?>
</footer>
<?php endif; ?>
<?php print render($content['comments']); ?>
<?php if (!$page): ?>
</article> <!-- /.node -->
<?php endif; ?>

View File

@ -0,0 +1,258 @@
<?php
/**
* @file
* Default theme implementation to display a single Drupal page.
*
* Available variables:
*
* General utility variables:
* - $base_path: The base URL path of the Drupal installation. At the very
* least, this will always default to /.
* - $directory: The directory the template is located in, e.g. modules/system
* or themes/garland.
* - $is_front: TRUE if the current page is the front page.
* - $logged_in: TRUE if the user is registered and signed in.
* - $is_admin: TRUE if the user has permission to main-menu administration pages.
*
* Site identity:
* - $front_page: The URL of the front page. Use this instead of $base_path,
* when linking to the front page. This includes the language domain or
* prefix.
* - $logo: The path to the logo image, as defined in theme configuration.
* - $site_name: The name of the site, empty when display has been disabled
* in theme settings.
* - $site_slogan: The slogan of the site, empty when display has been disabled
* in theme settings.
*
* Navigation:
* - $main_menu (array): An array containing the Main menu links for the
* site, if they have been configured.
* - $secondary_menu (array): An array containing the Secondary menu links for
* the site, if they have been configured.
* - $breadcrumb: The breadcrumb trail for the current page.
*
* Page content (in order of occurrence in the default page.tpl.php):
* - $title_prefix (array): An array containing additional output populated by
* modules, intended to be displayed in front of the main title tag that
* appears in the template.
* - $title: The page title, for use in the actual HTML content.
* - $title_suffix (array): An array containing additional output populated by
* modules, intended to be displayed after the main title tag that appears in
* the template.
* - $messages: HTML for status and error messages. Should be displayed
* prominently.
* - $tabs (array): Tabs linking to any sub-pages beneath the current page
* (e.g., the view and edit tabs when displaying a node).
* - $action_links (array): Actions local to the page, such as 'Add menu' on the
* menu administration interface.
* - $feed_icons: A string of all feed icons for the current page.
* - $node: The node object, if there is an automatically-loaded node
* associated with the page, and the node ID is the second argument
* in the page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - $page['help']: Dynamic help text, mostly for admin pages.
* - $page['content']: The main content of the current page.
* - $page['sidebar_first']: Items for the first sidebar.
* - $page['sidebar_second']: Items for the second sidebar.
* - $page['header']: Items for the header region.
* - $page['footer']: Items for the footer region.
*
* @see template_preprocess()
* @see template_preprocess_page()
* @see template_process()
*/
?>
<div class="wrap">
<div id="header_wrapper">
<div class="user-menu-wrapper">
<div class="full-wrap">
<?php print render($page['user_menu']) ?>
</div>
</div>
<header id="header" role="banner">
<div class="top_left">
<?php if ($logo): ?>
<div id="logo">
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>">
<img src="<?php print $logo; ?>"/>
</a>
</div>
<?php endif; ?>
<h1 id="site-title">
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a>
<div id="site-description"><?php print $site_slogan; ?></div>
</h1>
</div>
<div class="top_right">
<nav id="main-menu" role="navigation">
<a class="nav-toggle" href="#">Navigation</a>
<div class="menu-navigation-container">
<?php
$main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
print drupal_render($main_menu_tree);
?>
</div>
<div class="clear"></div>
</nav><!-- end main-menu -->
</div>
<div class="clear"></div>
</header>
</div>
<?php print render($page['slideshow']); ?>
<?php print render($page['front_welcome']); ?>
<?php if ($page['top_first'] || $page['top_second'] || $page['top_third']): ?>
<div id="top-area" class="clearfix">
<?php if ($page['top_first']): ?>
<div class="column"><?php print render($page['top_first']); ?></div>
<?php endif; ?>
<?php if ($page['top_second']): ?>
<div class="column"><?php print render($page['top_second']); ?></div>
<?php endif; ?>
<?php if ($page['top_third']): ?>
<div class="column"><?php print render($page['top_third']); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
<div id="container">
<div class="container-wrap">
<div class="content-sidebar-wrap">
<div id="content">
<?php if (theme_get_setting('breadcrumbs', 'metro_zymphonies_theme')): ?><div id="breadcrumbs"><?php if ($breadcrumb): print $breadcrumb; endif;?></div><?php endif; ?>
<section id="post-content" role="main">
<?php print $messages; ?>
<?php print render($title_prefix); ?>
<?php if ($title): ?><h1 class="page-title"><?php print $title; ?> <a href="https://twitter.com/share" class="twitter-share-button" data-via="nplainsathletes">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></h1><?php endif; ?>
<?php print render($title_suffix); ?>
<?php if (!empty($tabs['#primary'])): ?><div class="tabs-wrapper"><?php print render($tabs); ?></div><?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<?php print render($page['content']); ?>
</section> <!-- /#main -->
</div>
<?php if ($page['sidebar_first']): ?>
<aside id="sidebar-first" role="complementary">
<?php print render($page['sidebar_first']); ?>
</aside> <!-- /#sidebar-first -->
<?php endif; ?>
</div>
<?php if ($page['sidebar_second']): ?>
<aside id="sidebar-second" role="complementary">
<?php print render($page['sidebar_second']); ?>
</aside> <!-- /#sidebar-first -->
<?php endif; ?>
<?php if ($is_front): ?>
<div id="footer_wrapper" class="footer_block bottom_widget">
<?php if ($page['bottom_widget_1'] || $page['bottom_widget_2'] || $page['bottom_widget_3']): ?>
<div id="footer-area" class="clearfix">
<?php if ($page['bottom_widget_1']): ?>
<div class="column"><?php print render($page['bottom_widget_1']); ?></div>
<?php endif; ?>
<?php if ($page['bottom_widget_2']): ?>
<div class="column"><?php print render($page['bottom_widget_2']); ?></div>
<?php endif; ?>
<?php if ($page['bottom_widget_3']): ?>
<div class="column"><?php print render($page['bottom_widget_3']); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
<?php if ($is_front): ?>
<?php print render($page['highlights']); ?>
<?php endif; ?>
<div id="footer">
<div id="footer_wrapper">
<?php if ($page['footer_first'] || $page['footer_second'] || $page['footer_third'] || $page['footer_forth']): ?>
<div id="footer-area" class="clearfix">
<?php if ($page['footer_first']): ?>
<div class="column"><?php print render($page['footer_first']); ?></div>
<?php endif; ?>
<?php if ($page['footer_second']): ?>
<div class="column"><?php print render($page['footer_second']); ?></div>
<?php endif; ?>
<?php if ($page['footer_third']): ?>
<div class="column"><?php print render($page['footer_third']); ?></div>
<?php endif; ?>
<?php if ($page['footer_forth']): ?>
<div class="column"><?php print render($page['footer_forth']); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
<div class="footer_credit">
<!-- Social Links -->
<?php if (theme_get_setting('social_links', 'metro_zymphonies_theme')): ?>
<div class="social-icons">
<ul>
<li><a class="rss" href="<?php print $front_page; ?>rss.xml"><i class="fa fa-rss"></i></a></li>
<li><a class="fb" href="<?php echo theme_get_setting('facebook_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-facebook"></i></a></li>
<li><a class="twitter" href="<?php echo theme_get_setting('twitter_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-twitter"></i></a></li>
<li><a class="gplus" href="<?php echo theme_get_setting('gplus_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-google-plus"></i></a></li>
<li><a class="linkedin" href="<?php echo theme_get_setting('linkedin_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-linkedin"></i></a></li>
<li><a class="pinterest" href="<?php echo theme_get_setting('pinterest_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-pinterest"></i></a></li>
<li><a class="youtube" href="<?php echo theme_get_setting('youtube_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
<?php endif; ?>
<div id="copyright">
<p class="copyright">
<?php print t('Copyright'); ?> &copy; <?php echo date("Y"); ?>, <?php print $site_name; ?> </p>
<p class="credits"> <?php print t('Designed by'); ?> <a href="http://www.zymphonies.com">Zymphonies</a></p>
<div class="clear"></div>
</div>
</div>
</div>