diff options
author | Guillaume Seguin <guillaume@segu.in> | 2008-03-28 00:34:14 +0100 |
---|---|---|
committer | Guillaume Seguin <guillaume@segu.in> | 2008-03-28 00:34:14 +0100 |
commit | 279ec42607800aae7f8cd049e96423fc8d8787fc (patch) | |
tree | 7827716aab8a67f5fc20985fdd6d5bdbe8eca86e | |
download | fusion-wp-theme-279ec42607800aae7f8cd049e96423fc8d8787fc.tar.gz fusion-wp-theme-279ec42607800aae7f8cd049e96423fc8d8787fc.tar.bz2 |
* Initial import
-rw-r--r-- | attachment.php | 67 | ||||
-rw-r--r-- | blue.css | 105 | ||||
-rw-r--r-- | comments-popup.php | 116 | ||||
-rw-r--r-- | comments.php | 75 | ||||
-rw-r--r-- | footer.php | 31 | ||||
-rw-r--r-- | functions.php | 42 | ||||
-rw-r--r-- | fusion.css | 436 | ||||
-rw-r--r-- | header.php | 64 | ||||
-rw-r--r-- | img/Home.svg | 1434 | ||||
-rw-r--r-- | img/cf_button_medium.png | bin | 0 -> 722 bytes | |||
-rw-r--r-- | img/cf_footer_bg.png | bin | 0 -> 168 bytes | |||
-rw-r--r-- | img/cf_footer_lcap.png | bin | 0 -> 534 bytes | |||
-rw-r--r-- | img/cf_footer_rcap.png | bin | 0 -> 511 bytes | |||
-rw-r--r-- | img/cf_header_bg.png | bin | 0 -> 267 bytes | |||
-rw-r--r-- | img/cf_header_lcap.png | bin | 0 -> 727 bytes | |||
-rw-r--r-- | img/cf_header_rcap.png | bin | 0 -> 789 bytes | |||
-rw-r--r-- | img/cf_logo.png | bin | 0 -> 7575 bytes | |||
-rw-r--r-- | img/cf_logo_text.png | bin | 0 -> 14532 bytes | |||
-rw-r--r-- | img/cf_menu_bg.png | bin | 0 -> 218 bytes | |||
-rw-r--r-- | img/cf_search_bg.png | bin | 0 -> 892 bytes | |||
-rw-r--r-- | img/cf_search_button.png | bin | 0 -> 1098 bytes | |||
-rw-r--r-- | img/cf_search_lcap.png | bin | 0 -> 410 bytes | |||
-rw-r--r-- | img/cf_tab_a_bg.png | bin | 0 -> 219 bytes | |||
-rw-r--r-- | img/cf_tab_a_lcap.png | bin | 0 -> 363 bytes | |||
-rw-r--r-- | img/cf_tab_a_rcap.png | bin | 0 -> 474 bytes | |||
-rw-r--r-- | img/cf_tab_bg.png | bin | 0 -> 242 bytes | |||
-rw-r--r-- | img/cf_tab_lcap.png | bin | 0 -> 431 bytes | |||
-rw-r--r-- | img/cf_tab_lcap_ws.png | bin | 0 -> 471 bytes | |||
-rw-r--r-- | img/cf_tab_rcap.png | bin | 0 -> 555 bytes | |||
-rw-r--r-- | img/cf_tabs_lcap.png | bin | 0 -> 270 bytes | |||
-rw-r--r-- | img/cf_tabs_rcap.png | bin | 0 -> 248 bytes | |||
-rw-r--r-- | img/cf_tabs_spacer.png | bin | 0 -> 283 bytes | |||
-rw-r--r-- | img/feed-icon.png | bin | 0 -> 689 bytes | |||
-rw-r--r-- | img/icons/contribute.png | bin | 0 -> 1929 bytes | |||
-rw-r--r-- | img/icons/download.png | bin | 0 -> 1971 bytes | |||
-rw-r--r-- | img/icons/extend.png | bin | 0 -> 1436 bytes | |||
-rw-r--r-- | img/icons/help.png | bin | 0 -> 2231 bytes | |||
-rw-r--r-- | img/icons/rss.png | bin | 0 -> 786 bytes | |||
-rw-r--r-- | img/icons/use.png | bin | 0 -> 1610 bytes | |||
-rw-r--r-- | img/listicon.png | bin | 0 -> 243 bytes | |||
-rw-r--r-- | index.php | 114 | ||||
-rw-r--r-- | rtl.css | 82 | ||||
-rw-r--r-- | screenshot.png | bin | 0 -> 46932 bytes | |||
-rw-r--r-- | search.php | 33 | ||||
-rw-r--r-- | sidebar.php | 23 | ||||
-rw-r--r-- | style.css | 67 | ||||
-rw-r--r-- | tabmenu.inc.php | 57 |
47 files changed, 2746 insertions, 0 deletions
diff --git a/attachment.php b/attachment.php new file mode 100644 index 0000000..7839b6c --- /dev/null +++ b/attachment.php @@ -0,0 +1,67 @@ +<?php get_header(); ?> + + <div id="content" class="widecolumn"> + + <?php if (have_posts()) : while (have_posts()) : the_post(); ?> + + <div class="navigation"> + <div class="alignleft"> </div> + <div class="alignright"> </div> + </div> +<?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> +<?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?> + <div class="post" id="post-<?php the_ID(); ?>"> + <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> + <div class="entry"> + <p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p> + + <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> + + <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> + + <p class="postmetadata alt"> + <small> + This entry was posted + <?php /* This is commented, because it requires a little adjusting sometimes. + You'll need to download this plugin, and follow the instructions: + http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */ + /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> + on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?> + and is filed under <?php the_category(', ') ?>. + You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed. + + <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { + // Both Comments and Pings are open ?> + You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(true); ?>" rel="trackback">trackback</a> from your own site. + + <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { + // Only Pings are Open ?> + Responses are currently closed, but you can <a href="<?php trackback_url(true); ?> " rel="trackback">trackback</a> from your own site. + + <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) { + // Comments are open, Pings are not ?> + You can skip to the end and leave a response. Pinging is currently not allowed. + + <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { + // Neither Comments, nor Pings are open ?> + Both comments and pings are currently closed. + + <?php } edit_post_link('Edit this entry.','',''); ?> + + </small> + </p> + + </div> + </div> + + <?php comments_template(); ?> + + <?php endwhile; else: ?> + + <p>Sorry, no attachments matched your criteria.</p> + +<?php endif; ?> + + </div> + +<?php get_footer(); ?> diff --git a/blue.css b/blue.css new file mode 100644 index 0000000..075d430 --- /dev/null +++ b/blue.css @@ -0,0 +1,105 @@ +/* additional CSS for the BLUE-colorset (the frontpage) */ + +/* links */ +a { + color: #F57575; + text-decoration: none; +} +a:hover { + color: #F14A4A; + text-decoration: underline; +} + +/* blog/frontpage specific CSS */ +.blogentry { + margin-bottom: 40px; + margin-left: 10px; +} +.blogentry h2 { + /*border-bottom: dashed 1px #333333;*/ + padding-bottom: 0px; + margin-bottom: -7px; + /*padding-left: 35px; + background: url(img/icons/news.png) 0px 3px no-repeat;*/ +} +.blogentry h2 span { + font-size: 11px; + font-weight:normal; + color:#666666; +} + +/*meta tags */ +#meta { + text-align: center; + color: #444444; + margin-top: 30px; + font-size: 11px; +} + +/* menubar fixes */ +#menubar ul { + list-style-type: none; + list-style-image: none; + margin: 0px 0px 0px 0px; + padding: 0px 0px 0px 0px; +} +#menubar li { + display:inline; + margin-right: 10px; +} + +/* comments style */ +#commentlist li { + border: dashed 1px #444444; + padding: 5px 5px 5px 5px; + margin-bottom: 20px; +} +#commentlist cite { + color: #666666; +} + +/* sidebar styles and icons */ +.sidebar { + border: none; +} +.sidebar ul { + list-style-image:none; + list-style-type:none; + margin:0px; + padding:0px; +} +.sidebar li { + padding-bottom: 15px; + font-size:12px +} +#sidebar-download { + padding-left:45px; + background: url(img/icons/download.png) 6px 8px no-repeat; +} +#sidebar-quickinfo { + padding-left:45px; + background: url(img/icons/help.png) 6px 8px no-repeat; +} +#sidebar-use { + padding-left:45px; + background: url(img/icons/use.png) 6px 8px no-repeat; +} +#sidebar-extend { + padding-left:45px; + background: url(img/icons/extend.png) 6px 8px no-repeat; +} +#sidebar-contribute { + padding-left:45px; + background: url(img/icons/contribute.png) 6px 8px no-repeat; +} + +/* RSS */ +.rss-link { + text-align: center; + width: 100%; +} +.rss-link img { + border: 0; + vertical-align: bottom; + margin-right: 5px; +} diff --git a/comments-popup.php b/comments-popup.php new file mode 100644 index 0000000..e7f6876 --- /dev/null +++ b/comments-popup.php @@ -0,0 +1,116 @@ +<?php +/* Don't remove these lines. */ +add_filter('comment_text', 'popuplinks'); +while( have_posts()) : the_post(); +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title><?php echo get_option('blogname'); ?> - <?php echo sprintf(__("Comments on %s"), the_title('','',false)); ?></title> + + <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> + <style type="text/css" media="screen"> + @import url( <?php bloginfo('stylesheet_url'); ?> ); + body { margin: 3px; } + </style> + +</head> +<body id="commentspopup"> + +<h1 id="header"><a href="" title="<?php echo get_option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1> + +<h2 id="comments"><?php _e("Comments"); ?></h2> + +<p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><?php _e("<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."); ?></a></p> + +<?php if ('open' == $post->ping_status) { ?> +<p><?php _e("The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is:"); ?> <em><?php trackback_url() ?></em></p> +<?php } ?> + +<?php +// this line is WordPress' motor, do not delete it. +$commenter = wp_get_current_commenter(); +extract($commenter); +$comments = get_approved_comments($id); +$commentstatus = get_post($id); +if (!empty($commentstatus->post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $commentstatus->post_password) { // and it doesn't match the cookie + echo(get_the_password_form()); +} else { ?> + +<?php if ($comments) { ?> +<ol id="commentlist"> +<?php foreach ($comments as $comment) { ?> + <li id="comment-<?php comment_ID() ?>"> + <?php comment_text() ?> + <p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p> + </li> + +<?php } // end for each comment ?> +</ol> +<?php } else { // this is displayed if there are no comments so far ?> + <p><?php _e("No comments yet."); ?></p> +<?php } ?> + +<?php if ('open' == $commentstatus->comment_status) { ?> +<h2><?php _e("Leave a comment"); ?></h2> +<p><?php _e("Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed:"); ?> <code><?php echo allowed_tags(); ?></code></p> + +<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> +<?php if ( $user_ID ) : ?> +<p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php echo attribute_escape(__('Log out of this account')); ?>"><?php _e('Logout »'); ?></a></p> +<?php else : ?> + <p> + <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" /> + <label for="author"><?php _e("Name"); ?></label> + <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> + <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($_SERVER["REQUEST_URI"]); ?>" /> + </p> + + <p> + <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" /> + <label for="email"><?php _e("E-mail"); ?></label> + </p> + + <p> + <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" /> + <label for="url"><?php _e("<abbr title=\"Universal Resource Locator\">URL</abbr>"); ?></label> + </p> +<?php endif; ?> + + <p> + <label for="comment"><?php _e("Your Comment"); ?></label> + <br /> + <textarea name="comment" id="comment" cols="70" rows="4" tabindex="4"></textarea> + </p> + + <p> + <input name="submit" type="submit" tabindex="5" value="<?php _e("Say It!"); ?>" /> + </p> + <?php do_action('comment_form', $post->ID); ?> +</form> +<?php } else { // comments are closed ?> +<p><?php _e("Sorry, the comment form is closed at this time."); ?></p> +<?php } +} // end password check +?> + +<div><strong><a href="javascript:window.close()"><?php _e("Close this window."); ?></a></strong></div> + +<?php // if you delete this the sky will fall on your head +endwhile; +?> + +<!-- // this is just the end of the motor - don't touch that line either :) --> +<?php //} ?> +<p class="credit"><?php timer_stop(1); ?> <?php echo sprintf(__("<cite>Powered by <a href=\"http://wordpress.org\" title=\"%s\"><strong>Wordpress</strong></a></cite>"),__("Powered by WordPress, state-of-the-art semantic personal publishing platform.")); ?></p> +<?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?> +<script type="text/javascript"> +<!-- +document.onkeypress = function esc(e) { + if(typeof(e) == "undefined") { e=event; } + if (e.keyCode == 27) { self.close(); } +} +// --> +</script> +</body> +</html> diff --git a/comments.php b/comments.php new file mode 100644 index 0000000..ae76177 --- /dev/null +++ b/comments.php @@ -0,0 +1,75 @@ +<hr /> +<br /> + +<?php if ( !empty($post->post_password) && $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?> +<p><?php _e('Enter your password to view comments.'); ?></p> +<?php return; endif; ?> + +<h2 id="comments"><?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?> +<?php if ( comments_open() ) : ?> + <a href="#postcomment" title="<?php _e("Leave a comment"); ?>">»</a> +<?php endif; ?><br /> + <span style="font-size:12px;font-weight:normal"> + <div class="rss-link"> + <?php comments_rss_link(__('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.')); ?> + </div> + <?php if ( pings_open() ) : ?> + <a href="<?php trackback_url() ?>" rel="trackback"><?php _e('TrackBack <abbr title="Universal Resource Locator">URL</abbr>'); ?></a> + <?php endif; ?> + </span> +</h2> + +<?php if ( $comments ) : ?> + <ol id="commentlist"> + <?php foreach ($comments as $comment) : ?> + <li id="comment-<?php comment_ID() ?>"> + <p style="font-size:11px"> + <a href="#comment-<?php comment_ID() ?>">:</a> + <cite> + <strong><?php comment_author_link() ?></strong>, + <?php comment_date() ?> @ <?php comment_time() ?> + </cite> + <?php edit_comment_link(__("Edit This"), ' | '); ?> + </p> + <?php comment_text() ?> + </li> + <?php endforeach; ?> + </ol> +<?php else : // If there are no comments yet ?> + <p><?php _e('No comments yet.'); ?></p> +<?php endif; ?> +<br /> + +<?php if ( comments_open() ) : ?> + <h2 id="postcomment"><?php _e('Leave a comment'); ?></h2> + + <?php if ( get_option('comment_registration') && !$user_ID ) : ?> + <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.'), get_option('siteurl')."/wp-login.php?redirect_to=".urlencode(get_permalink()));?></p> + <?php else : ?> + <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> + <?php if ( $user_ID ) : ?> + <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Logout »'); ?></a></p> + <?php else : ?> + <p><input class="entry" type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> + <label for="author"><small><?php _e('Name'); ?> <?php if ($req) _e('(required)'); ?></small></label></p> + + <p><input class="entry" type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> + <label for="email"><small><?php _e('Mail (will not be published)');?> <?php if ($req) _e('(required)'); ?></small></label></p> + + <p><input class="entry" type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> + <label for="url"><small><?php _e('Website'); ?></small></label></p> + <?php endif; ?> + <p> + <textarea class="entry" name="comment" id="comment" tabindex="4" style="width:99%;height:250px"></textarea> + </p> + <p align="right"> + <input name="submit" type="submit" id="submit" class="buttonMedium" tabindex="5" value="SUBMIT" /> + <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> + </p> + <?php do_action('comment_form', $post->ID); ?> + </form> + <?php endif; // If registration required and not logged in ?> + +<?php else : // Comments are closed ?> + <p><?php _e('Sorry, the comment form is closed at this time.'); ?></p> +<?php endif; ?> diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..bb0ccc6 --- /dev/null +++ b/footer.php @@ -0,0 +1,31 @@ +<!-- begin footer --> + + </div> + </div> + + <div id="footerBlock"> + <div id="footerRCap"></div> + <div id="footerLCap"></div> + <!-- put something here? --> + </div> + + <div id="meta"> + <?php wp_loginout(); ?> | + <a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a> | + <a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a> | + <a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a> | + <a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a> | + <a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a> | + <?php wp_meta(); ?> + </div> + + <div id="footer"> + <p class="credit"><!--<?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. --> <cite><?php echo sprintf(__("Powered by <a href='http://wordpress.org/' title='%s'><strong>WordPress</strong></a>"), __("Powered by WordPress, state-of-the-art semantic personal publishing platform.")); ?> | Layout by <a href="mailto: ryx@ryxperience.com"><strong>Rico "RYX" Pfaus</strong></a></cite></p> + <?php wp_footer(); ?> + </div> + + </div> + +</body> + +</html> diff --git a/functions.php b/functions.php new file mode 100644 index 0000000..045cca9 --- /dev/null +++ b/functions.php @@ -0,0 +1,42 @@ +<?php + +// get cached feed (TODO: add some more error-handling) +// (NOTE: usually updates the cache each 60 minutes) +function cf_xml_load_file_cached ($url, $update_after=3600, $cache_dir='/tmp') { + // buld filename from feed url + $tmpname = str_replace('#', '', str_replace('/', '_', str_replace('.', '_', str_replace('http://', '', $url)))) . '.xml'; + //echo $tmpname . '<br>'; + $cache_url = $cache_dir . '/' . $tmpname; + // get timestamp for cached file and diff to current time + $ftime = 0; + if (is_file($cache_url)) + $ftime = filemtime($cache_url); + $diff = time() - $ftime; + // update cache (if neccessary) or use cached file + //echo 'DIFF: '.$diff.'<br>'; + if ($diff > $update_after) { + //echo 'FEED: Rebuilding cache!'; + $xml = simplexml_load_file($url); + // update cached file + $f = fopen($cache_url, 'w+'); + if ($f) { + if (fwrite($f, $xml->asXML())) + fclose($f); + else + echo 'FEED: Error while writing to temporary file<br />'; + } else + echo 'FEED: Error while creating temporary file<br />'; + } else + $xml = simplexml_load_file($cache_url); + // return xml file + return $xml; +} + +// setup dynamic sidebar +if (function_exists('register_sidebar')) + register_sidebar(array('before_widget' => '<li id="%1$s" class="widget %2$s">', + 'after_widget' => '</li>', 'before_title' => '', 'after_title' => '',)); + + + +?> diff --git a/fusion.css b/fusion.css new file mode 100644 index 0000000..8be1ad6 --- /dev/null +++ b/fusion.css @@ -0,0 +1,436 @@ +/* NOTE: +a light version of this theme would only need to replace the following colors +(and supply an alternative set of images of course): + +ffffff -> 000000 +eeeeee -> 111111 +333333 -> cccccc +444444 -> bbbbbb +1a1a1a -> e5e5e5 +666666 -> 999999 + +*/ + +/* html styles */ +html, body { + height: 100%; +} +body { + font-family: Sans-serif; + font-size: 12px; + color:#eeeeee; + background-color:#1a1a1a; + margin: 5px 10px 10px 10px; +} +input, select, textarea { + padding: 3px; + border:solid 1px #333333; + font-family: Sans-serif; + font-size: 13px; +} +td { + vertical-align: top; +} +hr { + height: 1px; + color: #333333; + background-color: #333333; + border: 0px; + margin: 5px 0px 5px 0px; + padding: 0px; +} +a { + border: none; +} +ul { + list-style-image: url(img/listicon.png); +} +p { + margin-top: 0; +} +/* outer container (use to apply fixed size) */ +#wrapper { + min-width:680px; + margin-left: 30px; + margin-right: 30px; +} + +/* tabmenu div */ +#tabmenuBlock { + height: 46px; + padding: 0px 30px 0px 30px; +} + +/* header div and content */ +#headerBlock { + padding: none; + background-image: url(img/cf_header_bg.png); + height: 96px; +} +#headerRCap { + width: 30px; + height: 96px; + background-image: url(img/cf_header_rcap.png); + float:right; +} +#headerLCap { + width: 30px; + height: 96px; + background-image: url(img/cf_header_lcap.png); + float:left; +} +#headerContent { + padding-top: 15px; + text-align: right; +} +#logo { + display: block; + width: 80px; + height: 80px; + background-image: url(img/cf_logo.png); + float:left; +} +#logo-text { + display: block; + width: 289px; + height: 80px; + margin-top: 5px; + background-image: url(img/cf_logo_text.png); + float:left; +} + +/* searchbox */ +#searchbox { + float:right; + font-size:0px; + height:30px; + vertical-align:top; + padding-top:5px; +} +/* +#searchboxLCap { + float:left; + width:12px; + height:26px; + position:relative; + background-image:url(img/cf_search_lcap.png); +}*/ +#searchboxInput { + float:left; + position:relative; + color:#eeeeee; + width:143px; + height:22px; + padding: 0px; + padding: 6px 5px 3px 5px; + vertical-align: middle; + background-color:transparent; + background-image:url(img/cf_search_bg.png); + border:none; + margin-top:0px; +} +#searchboxButton { + float:left; + position:relative; + width:20px; + height:26px; + margin-left: 2px; + background-color:transparent; + background-image:url(img/cf_search_button.png); + border:none; + cursor:pointer; + font-size: 0px; +} + +/* menubar div */ +#menubarBlock, #contentBlock, #userbarBlock { + padding: none; + border-left: solid 10px #333333; + border-right: solid 10px #333333; +} +#menubar { + padding-top:7px; + padding-left: 10px; + padding-right: 5px; + height: 25px; + background-image: url(img/cf_menu_bg.png); + color: #ffffff; +} +#menubar a { + color: #ffffff; + font-weight: bold; + font-size: 11px; + text-transform: uppercase; +} + +/* userbar div */ +#userbar { + height: 18px; + padding: 10px; + padding-top: 5px; + padding-bottom: 3px; + font-size: 11px; + vertical-align: middle; + border: solid 1px #444444; + border-top: none; + color: #444444; + /*background-color: #666666;*/ +} + +/* content divs */ +#content, #menubar, #lowerContent { + border-left: solid 1px #444444; + border-right: solid 1px #444444; +} +#content { + padding: 10px; + color: #eeeeee; + min-height: 300px; + /*font-size:15px;*/ /* use this to adjust the content's fontsize */ +} +.innerContent { + margin: 5px 0px 5px 0px; + padding: 10px; + border: dashed 1px #333333; +} + +/* sidebars */ +.sidebar { + /*width: 220px;*/ + padding: 10px; + /*float:right;*/ + position:relative; + border: dashed 1px #333333; + margin-bottom: 10px; + margin-left: 10px; +} +.sidebar h2 { + margin-bottom:0px; +} + +/* lower content blocks (for News/Planet/...) */ +#lowerContent { + /*margin-top: 20px; + margin-bottom: 20px;*/ + border-top: solid 1px #444444; + padding: 10px; + padding-top: 20px; + /*background-color: #333333;*/ +} +#lowerLeft { + float:left; + width:31%; + min-height:150px; + border-right: 1px dashed #333333; + padding:0px 10px 25px 10px; + text-align: left; +} +#lowerMiddle { + float:left; + width:31%; + padding:0px 10px 25px 10px; + text-align: left; +} +#lowerRight { + float:right; + width:31%; + min-height:150px; + border-left: 1px dashed #333333; + padding:0px 20px 25px 10px + text-align: left; +} +#lowerContent h2, #content h2 { + margin-top: 0px; + margin-bottom: 0px; + padding-top: 0px; + padding-bottom: 0px; + color: #888; + font-size: 18px; + font-weight: bold; +} +#lowerContent ul{ + padding-left: 15px; + margin-left: 0; + margin-right: 0; +} +/* +.newsicon { + padding-left: 40px; + height: 32px; + background: url(img/icons/news.png) 0px 0px no-repeat; + vertical-align: middle; +} +.planeticon { + padding-left: 40px; + height: 32px; + background: url(img/icons/planet.png) 0px 0px no-repeat; + vertical-align: middle; +} +.postsicon { + padding-left: 40px; + height: 32px; + background: url(img/icons/attachment.png) 0px 0px no-repeat; + vertical-align: middle; +}*/ + + +/* footer/copyright divs */ +#footerBlock { + height: 30px; + background-image: url(img/cf_footer_bg.png); + color: #666666; + font-size: 10px; + text-align:center; +} +#footer { + padding: 10px; + margin-bottom: 5px; + font-size: 11px; + text-align: center; + color: #666666; +} +#footerRCap { + width: 30px; + height: 30px; + background-image: url(img/cf_footer_rcap.png); + float:right; +} +#footerLCap { + width: 30px; + height: 30px; + background-image: url(img/cf_footer_lcap.png); + float:left; +} + +/* styles for tabs (in order of appearance, from left to right) */ +#tabs { + height:46px; + margin: 0px 30px 0px 30px; +} +#tabsLeftCap { + float:left; + width:7px; + height:46px; + background: url(img/cf_tabs_lcap.png) no-repeat; +} +#tabActiveLCap, .tabLCap, .tabLCapWS { + float:left; + width:10px; + height:46px; + background: url(img/cf_tab_a_lcap.png) no-repeat; +} +#tabActive, .tab { + float:left; + height:46px; + background: url(img/cf_tab_a_bg.png) repeat-x; +} +#tabActive div, .tab div { /* content of the tab buttons */ + margin:23px 5px 0px 5px; + font-family: Sans-serif; + font-size: 12px; + font-weight: bold; +} +#tabActive div a { + color: #ffffff; + text-decoration: none; +} +#tabActive div a:hover { + color: #ffffff; + text-decoration: underline; +} +#tabActiveRCap, .tabRCap { + float:left; + width:12px; + height:46px; + background: url(img/cf_tab_a_rcap.png) no-repeat; +} +.tabSpacer { + float:left; + width:6px; + height:46px; + background: url(img/cf_tabs_spacer.png) no-repeat; +} +.tabLCap { + background: url(img/cf_tab_lcap.png); +} +.tabLCapWS { /* with shadow on the left side */ + background: url(img/cf_tab_lcap_ws.png); +} +.tab { + background: url(img/cf_tab_bg.png); +} +.tab div a { + color: #333333; + text-decoration: none; +} +.tab div a:hover { + color: #333333; + text-decoration: underline; +} +.tabRCap { + background: url(img/cf_tab_rcap.png); +} +#tabsRightCap { + float:left; + width:6px; + height:46px; + background: url(img/cf_tabs_rcap.png) no-repeat; +} + +/* buttons (use only on "real" computer screens) */ +@media screen { + .button, .buttonMedium, .buttonBig { + border: none; + width: 100px; + height: 41px; + color:#fffffff; + font-weight:bold; + background: url(img/cf_button.png) 0px 0px no-repeat; + cursor:pointer; + } + /*.button:hover { + background: url(img/cf_button_hover.png) 0px 0px no-repeat; + color: #1a1a1a; + }*/ + .buttonMedium { + width: 130px; + height: 50px; + color:#eeeeee; + background: url(img/cf_button_medium.png); + margin: 5px; + margin-right: 0px; + } + .buttonBig { + width: 142px; + height: 57px; + background: url(img/cf_button_big.png); + margin: 5px; + margin-right: 0px; + } + /*.buttonBig:hover { + background: url(img/cf_button_big_hover.png) 0px 0px no-repeat; + color: #1a1a1a; + }*/ +} + +/* input elements */ +.entry { + padding: 3px; + color:#eeeeee; + border:solid 1px #444444; + background-color: #333333; + min-width: 200px; +} +.entry:hover { + border:solid 1px #444444; +} +.note +{ + font-size: 0.9em; + margin-left: 3em; +} + +/* clearance */ +.clear { + clear: both; +} diff --git a/header.php b/header.php new file mode 100644 index 0000000..0e6bae3 --- /dev/null +++ b/header.php @@ -0,0 +1,64 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> + +<head profile="http://gmpg.org/xfn/11"> + <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> + + <title><?php bloginfo('name'); ?><?php wp_title(); ?></title> + + <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please --> + + <style type="text/css" media="screen"> + @import url( <?php bloginfo('stylesheet_url'); ?> ); + </style> + + <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> + <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> + <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> + + <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> + <?php wp_get_archives('type=monthly&format=link'); ?> + <?php //comments_popup_script(); // off by default ?> + <?php wp_head(); ?> +</head> + +<body> + + <div id="wrapper"> + + <?php + // include the tabmenu from external source + require('tabmenu.inc.php'); + create_tabmenu(0, ''); + ?> + + <div id="headerBlock"> + <div id="headerRCap"></div> + <div id="headerLCap"></div> + <div id="headerContent"> + <a id="logo" href="http://www.compiz-fusion.org/"></a> + <a id="logo-text" href="http://www.compiz-fusion.org/"></a> + + <div id="searchbox"> + <form id="" method="get" action="http://www.compiz-fusion.org/"> + <div id="searchboxLCap"></div> + <input type="text" id="searchboxInput" name="s" /> + <input type="submit" id="searchboxButton" value="" title="<?php _e('Search'); ?>" /> + </form> + </div> + </div> + </div> + + <div id="menubarBlock"> + <div id="menubar"> + <ul> + <li><a href="<?php bloginfo('url'); ?>/">Home</a></li> + <li><a href="<?php bloginfo('url'); ?>/team/">Team</a></li> + </ul> + </div> + </div> + + <div id="contentBlock"> + <div id="content" style=""> + +<!-- end header --> diff --git a/img/Home.svg b/img/Home.svg new file mode 100644 index 0000000..857cf46 --- /dev/null +++ b/img/Home.svg @@ -0,0 +1,1434 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:ns="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="800px" + height="600px" + id="svg8117" + sodipodi:version="0.32" + inkscape:version="0.45.1" + sodipodi:docbase="/home/patrick/Desktop/Website" + sodipodi:docname="Home.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs8119"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="-50 : 600 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="700 : 600 : 1" + inkscape:persp3d-origin="300 : 400 : 1" + id="perspective139" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="-50 : 600 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="700 : 600 : 1" + inkscape:persp3d-origin="300 : 400 : 1" + id="perspective138" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="-50 : 600 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="700 : 600 : 1" + inkscape:persp3d-origin="300 : 400 : 1" + id="perspective137" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="-50 : 600 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="700 : 600 : 1" + inkscape:persp3d-origin="300 : 400 : 1" + id="perspective136" /> + <linearGradient + id="linearGradient3926"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop3928" /> + <stop + style="stop-color:#729fcf;stop-opacity:0;" + offset="1" + id="stop3930" /> + </linearGradient> + <linearGradient + id="linearGradient8635"> + <stop + style="stop-color:#ffffff;stop-opacity:0.84513277;" + offset="0" + id="stop8637" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8639" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3294"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3296" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3298" /> + </linearGradient> + <linearGradient + id="linearGradient7901"> + <stop + style="stop-color:#ffffff;stop-opacity:0.78431374;" + offset="0" + id="stop7903" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop7905" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3522"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3524" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3526" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3522" + id="linearGradient3531" + gradientUnits="userSpaceOnUse" + x1="624.25079" + y1="622" + x2="623.74921" + y2="406" + gradientTransform="matrix(1.547244,0,0,1,-415.63296,-22)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient8035"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8037" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8039" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8035" + id="linearGradient8041" + x1="611" + y1="236" + x2="611" + y2="346.34592" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9946706,0,0,0.979798,2.1969358,-13.232323)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3330"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3332" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3334" /> + </linearGradient> + <linearGradient + id="linearGradient3201"> + <stop + style="stop-color:#000000;stop-opacity:0.34070796;" + offset="0" + id="stop3203" /> + <stop + id="stop8619" + offset="0.3116883" + style="stop-color:#000000;stop-opacity:0.18141593;" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3205" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3330" + id="linearGradient8614" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9953853,0,0,0.7534225,1.184327,42.815474)" + x1="391.8797" + y1="118.11813" + x2="392.44946" + y2="194.02728" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8635" + id="linearGradient8641" + x1="434" + y1="73.902275" + x2="434" + y2="131.42749" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3201" + id="linearGradient8668" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3230241,0,0,0.5926295,-129.20962,68.63046)" + x1="337.4953" + y1="154.23755" + x2="337.4953" + y2="83.217773" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient8823" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(174,6)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient8827" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(300,0)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient8845" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(442,6)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient8848" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(564,0)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9039" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0010922,0,0,0.9930431,133.71821,10.523061)" + x1="285.42383" + y1="85.25" + x2="285.42383" + y2="39.205933" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9043" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,0.9839572,255.62581,4.721925)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9058" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,0.9839572,543.62581,4.721925)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9066" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0010922,0,0,0.9930431,421.71821,10.52306)" + x1="285.42383" + y1="85.25" + x2="285.42383" + y2="39.205933" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9099" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,0.9839572,161.62581,-99.278075)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9101" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0010922,0,0,0.9930431,39.71821,-93.476939)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9104" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0010922,0,0,0.9930431,-0.28179,-89.47694)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9108" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,0.9839572,121.62581,-95.27807)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9122" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(300,0)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9124" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(174,6)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3294" + id="linearGradient9127" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(134,-90)" + x1="285.42383" + y1="85.25" + x2="286.5762" + y2="39.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient9131" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(260,-96)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient3941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,0.9839572,121.6258,4.721924)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7901" + id="linearGradient8756" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9990749,0,0,1.5587178,121.6258,-7.7072745)" + x1="145.5625" + y1="21.624598" + x2="145.5625" + y2="48" /> + <linearGradient + id="linearGradient2698"> + <stop + style="stop-color:#555753" + offset="0" + id="stop2700" /> + <stop + id="stop2706" + offset="0.70238096" + style="stop-color:#a3a5a2;stop-opacity:1;" /> + <stop + style="stop-color:#888a85" + offset="1" + id="stop2702" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2690"> + <stop + style="stop-color:#2e3436" + offset="0" + id="stop2692" /> + <stop + style="stop-color:#555753" + offset="1" + id="stop2694" /> + </linearGradient> + <linearGradient + id="linearGradient2617"> + <stop + style="stop-color:#fbfbfa;stop-opacity:1;" + offset="0" + id="stop2619" /> + <stop + style="stop-color:#d3d7cf" + offset="1" + id="stop2621" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2609"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop2611" /> + <stop + style="stop-color:#eeeeec" + offset="1" + id="stop2613" /> + </linearGradient> + <linearGradient + id="linearGradient2980" + inkscape:collect="always"> + <stop + id="stop2982" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop2984" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4919"> + <stop + id="stop4921" + offset="0" + style="stop-color:#429eff;stop-opacity:1;" /> + <stop + id="stop4923" + offset="1" + style="stop-color:#0044a7;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4931" + inkscape:collect="always"> + <stop + id="stop4933" + offset="0" + style="stop-color:#babdb6;stop-opacity:1;" /> + <stop + id="stop4935" + offset="1" + style="stop-color:#888a85" /> + </linearGradient> + <linearGradient + id="linearGradient4952" + inkscape:collect="always"> + <stop + id="stop4954" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4956" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient11102" + inkscape:collect="always"> + <stop + id="stop11104" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop11106" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient15493"> + <stop + id="stop15495" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop15497" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient19900" + inkscape:collect="always"> + <stop + id="stop19902" + offset="0" + style="stop-color:#888a85" /> + <stop + id="stop19904" + offset="1" + style="stop-color:#d3d7cf" /> + </linearGradient> + <linearGradient + id="linearGradient19914" + inkscape:collect="always"> + <stop + id="stop19916" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop19918" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient23434" + inkscape:collect="always"> + <stop + id="stop23436" + offset="0" + style="stop-color:#2e3436" /> + <stop + id="stop23438" + offset="1" + style="stop-color:#555753" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4919" + id="radialGradient7922" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.459545,0,0,1.345339,-7.403138,-10.82184)" + cx="17.062258" + cy="28.851427" + fx="17.062258" + fy="28.851427" + r="13.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2617" + id="radialGradient7926" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,-1.686609,1.66336,0,41.65431,111.7396)" + cx="59.787472" + cy="10.901535" + fx="59.787472" + fy="10.901535" + r="10.55559" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2980" + id="radialGradient7928" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.34,0,19.89607)" + cx="28.284271" + cy="30.145554" + fx="28.284271" + fy="30.145554" + r="13.258252" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2698" + id="linearGradient7930" + gradientUnits="userSpaceOnUse" + x1="81.332451" + y1="55.106758" + x2="82.919647" + y2="53.511261" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2690" + id="linearGradient7932" + gradientUnits="userSpaceOnUse" + x1="81.096306" + y1="57.148193" + x2="83.629295" + y2="54.615208" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2609" + id="radialGradient7938" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,1.143443,-1.247217,-1.248581e-6,41.735,-54.25682)" + cx="45.094624" + cy="-2.6936908" + fx="45.094624" + fy="-2.6936908" + r="10.498367" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient23434" + id="linearGradient7940" + gradientUnits="userSpaceOnUse" + x1="55.878288" + y1="12.472493" + x2="52.5" + y2="-4.6213989" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4931" + id="linearGradient7942" + gradientUnits="userSpaceOnUse" + x1="54.1129" + y1="12.846775" + x2="50.079948" + y2="-3.8813655" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11102" + id="radialGradient7944" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.946826,0,0,0.946826,0.469351,0.499261)" + cx="8.0402098" + cy="9.5280285" + fx="8.0402098" + fy="9.5280285" + r="9.8125" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2980" + id="radialGradient7948" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.34,0,19.89607)" + cx="28.284271" + cy="30.145554" + fx="28.284271" + fy="30.145554" + r="13.258252" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient19914" + id="linearGradient7959" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(814.51208,81.837354)" + x1="33.985317" + y1="32.045906" + x2="37.211494" + y2="35.272079" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient19900" + id="linearGradient7962" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(814.51208,81.837354)" + x1="40.25" + y1="41" + x2="43.0625" + y2="38.434578" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4952" + id="radialGradient7970" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.231289,-0.597872,0.530253,1.979013,784.76351,65.339714)" + cx="16.829521" + cy="24.743624" + fx="16.829521" + fy="24.743624" + r="16.924615" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient23434" + id="linearGradient8945" + gradientUnits="userSpaceOnUse" + x1="55.878288" + y1="12.472493" + x2="52.5" + y2="-4.6213989" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2698" + id="linearGradient8963" + gradientUnits="userSpaceOnUse" + x1="81.332451" + y1="55.106758" + x2="82.919647" + y2="53.511261" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2690" + id="linearGradient8965" + gradientUnits="userSpaceOnUse" + x1="81.096306" + y1="57.148193" + x2="83.629295" + y2="54.615208" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient19914" + id="linearGradient8967" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(814.51208,81.837354)" + x1="33.985317" + y1="32.045906" + x2="37.211494" + y2="35.272079" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient23434" + id="linearGradient8969" + gradientUnits="userSpaceOnUse" + x1="55.878288" + y1="12.472493" + x2="52.5" + y2="-4.6213989" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4919" + id="radialGradient8971" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.459545,0,0,1.345339,-7.403138,-10.82184)" + cx="17.062258" + cy="28.851427" + fx="17.062258" + fy="28.851427" + r="13.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4952" + id="radialGradient8973" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.231289,-0.597872,0.530253,1.979013,784.76351,65.339714)" + cx="16.829521" + cy="24.743624" + fx="16.829521" + fy="24.743624" + r="16.924615" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2617" + id="radialGradient8975" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,-1.686609,1.66336,0,41.65431,111.7396)" + cx="59.787472" + cy="10.901535" + fx="59.787472" + fy="10.901535" + r="10.55559" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2980" + id="radialGradient8977" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.34,0,19.89607)" + cx="28.284271" + cy="30.145554" + fx="28.284271" + fy="30.145554" + r="13.258252" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient19900" + id="linearGradient8979" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(814.51208,81.837354)" + x1="40.25" + y1="41" + x2="43.0625" + y2="38.434578" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2609" + id="radialGradient8981" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,1.143443,-1.247217,-1.248581e-6,41.735,-54.25682)" + cx="45.094624" + cy="-2.6936908" + fx="45.094624" + fy="-2.6936908" + r="10.498367" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4931" + id="linearGradient8983" + gradientUnits="userSpaceOnUse" + x1="54.1129" + y1="12.846775" + x2="50.079948" + y2="-3.8813655" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11102" + id="radialGradient8985" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.946826,0,0,0.946826,0.469351,0.499261)" + cx="8.0402098" + cy="9.5280285" + fx="8.0402098" + fy="9.5280285" + r="9.8125" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2980" + id="radialGradient8987" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.34,0,19.89607)" + cx="28.284271" + cy="30.145554" + fx="28.284271" + fy="30.145554" + r="13.258252" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.8284272" + inkscape:cx="722.8601" + inkscape:cy="502.44378" + inkscape:current-layer="layer2" + inkscape:document-units="px" + inkscape:window-width="919" + inkscape:window-height="649" + inkscape:window-x="186" + inkscape:window-y="52" + showgrid="false" /> + <metadata + id="metadata8122"> + <rdf:RDF> + <ns:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + <dc:date /> + <dc:creator> + <ns:Agent> + <dc:title /> + </ns:Agent> + </dc:creator> + <dc:rights> + <ns:Agent> + <dc:title /> + </ns:Agent> + </dc:rights> + <dc:publisher> + <ns:Agent> + <dc:title /> + </ns:Agent> + </dc:publisher> + <dc:identifier /> + <dc:source /> + <dc:relation /> + <dc:language /> + <dc:subject> + <rdf:Bag /> + </dc:subject> + <dc:coverage /> + <dc:description /> + <dc:contributor> + <ns:Agent> + <dc:title /> + </ns:Agent> + </dc:contributor> + <ns:license + rdf:resource="" /> + </ns:Work> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + style="display:inline"> + <rect + style="opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect3251" + width="849" + height="601" + x="-26" + y="-3.7258191e-14" /> + <g + id="g8872" + transform="translate(-20,4)"> + <path + sodipodi:nodetypes="ccccccc" + id="path3306" + d="M 648.42381,19.923808 L 751.5762,19.923808 C 760.4402,19.923808 767.5762,25.932804 767.5762,33.396892 L 767.5762,70.576194 L 632.42381,70.576194 L 632.42381,33.396892 C 632.42381,25.932804 639.55981,19.923808 648.42381,19.923808 z" + style="fill:#8d7fa8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="ccccccc" + id="path3263" + d="M 652.28814,22.532406 L 749.71187,22.532406 C 758.16355,22.532406 764.9676,27.447947 764.9676,33.553798 L 764.9676,63.967592 L 637.03241,63.967592 L 637.03241,33.553798 C 637.03241,27.447947 643.83646,22.532406 652.28814,22.532406 z" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.91719675;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25597271;visibility:visible;display:inline;overflow:visible" /> + <text + transform="scale(0.9885217,1.0116116)" + sodipodi:linespacing="125%" + id="text3308" + y="49.426086" + x="666.67505" + style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Oliver" + xml:space="preserve"><tspan + y="49.426086" + x="666.67505" + id="tspan3320" + sodipodi:role="line">FORUMS</tspan></text> + <path + sodipodi:nodetypes="ccccccc" + id="path7996" + d="M 648.4375,21.625 C 639.5735,21.625 632.4375,27.629662 632.4375,35.09375 L 632.4375,45 L 767.5625,45 L 767.5625,35.09375 C 767.5625,27.629659 760.4265,21.625 751.5625,21.625 L 648.4375,21.625 z" + style="fill:url(#linearGradient8848);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="ccccccc" + id="path3314" + d="M 648.42381,19.923808 L 751.5762,19.923808 C 760.4402,19.923808 767.5762,25.932804 767.5762,33.396892 L 767.5762,70.57619 L 632.42381,70.57619 L 632.42381,33.396892 C 632.42381,25.932804 639.55981,19.923808 648.42381,19.923808 z" + style="fill:url(#linearGradient8845);fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> + <path + style="fill:#8ae234;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 474.42381,-76.076192 L 577.5762,-76.076192 C 586.4402,-76.076192 593.5762,-70.067196 593.5762,-62.603108 L 593.5762,-25.423806 L 458.42381,-25.423806 L 458.42381,-62.603108 C 458.42381,-70.067196 465.55981,-76.076192 474.42381,-76.076192 z" + id="path3210" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 340.42381,-76.076192 L 443.5762,-76.076192 C 452.4402,-76.076192 459.5762,-70.067196 459.5762,-62.603108 L 459.5762,-25.423806 L 324.42381,-25.423806 L 324.42381,-62.603108 C 324.42381,-70.067196 331.55981,-76.076192 340.42381,-76.076192 z" + id="rect3168" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#000000;fill-opacity:0.18430032;fill-rule:evenodd;stroke:none;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 633.98196,24 L 737.01804,24 C 745.87205,24 753,30.05377 753,37.573475 L 753,71 L 618,71 L 618,37.573475 C 618,30.05377 625.12795,24 633.98196,24 z" + id="path8804" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 627.98196,25 L 731.01804,25 C 739.87205,25 747,30.931602 747,38.299555 L 747,75 L 612,75 L 612,38.299555 C 612,30.931602 619.12795,25 627.98196,25 z" + id="path8806" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient9058);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 627.9852,26 C 619.1294,26 612,31.908331 612,39.252674 L 612,49 L 747,49 L 747,39.252674 C 747,31.908328 739.8706,26 731.0148,26 L 627.9852,26 z" + id="path8812" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.91719675;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25490196;visibility:visible;display:inline;overflow:visible" + d="M 632.11268,26.958595 L 728.88732,26.958595 C 737.28269,26.958595 744.0414,31.7137 744.0414,37.620266 L 744.0414,67.0414 L 616.95859,67.0414 L 616.95859,37.620266 C 616.95859,31.7137 623.71731,26.958595 632.11268,26.958595 z" + id="path8814" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#000000;fill-opacity:0.18430032;fill-rule:evenodd;stroke:none;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 345.98196,24 L 449.01804,24 C 457.87205,24 465,30.05377 465,37.57348 L 465,71 L 330,71 L 330,37.57348 C 330,30.05377 337.12795,24 345.98196,24 z" + id="path8716" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 339.98196,25 L 443.01804,25 C 451.87205,25 459,30.931602 459,38.299555 L 459,75 L 324,75 L 324,38.299555 C 324,30.931602 331.12795,25 339.98196,25 z" + id="path8718" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient9043);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 339.9852,26 C 331.1294,26 324,31.908331 324,39.252674 L 324,49 L 459,49 L 459,39.252674 C 459,31.908328 451.8706,26 443.0148,26 L 339.9852,26 z" + id="path8724" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:5.91719675;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25490196;visibility:visible;display:inline;overflow:visible" + d="M 344.11268,26.958595 L 440.88732,26.958595 C 449.28269,26.958595 456.0414,31.7137 456.0414,37.620266 L 456.0414,67.0414 L 328.95859,67.0414 L 328.95859,37.620266 C 328.95859,31.7137 335.71731,26.958595 344.11268,26.958595 z" + id="path8726" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient9039);fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 340.36748,24.350003 L 443.63253,24.350003 C 452.50622,24.350003 459.65001,30.317195 459.65001,37.729356 L 459.65001,74.650001 L 324.35001,74.650001 L 324.35001,37.729356 C 324.35001,30.317195 331.4938,24.350003 340.36748,24.350003 z" + id="path8728" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#000000;fill-opacity:0.18430032;fill-rule:evenodd;stroke:none;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 211.98196,24 L 315.01804,24 C 323.87205,24 331,30.05377 331,37.57348 L 331,71 L 196,71 L 196,37.57348 C 196,30.05377 203.12795,24 211.98196,24 z" + id="path8057" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 205.98196,-75 L 309.01804,-75 C 317.87205,-75 325,-69.0684 325,-61.70045 L 325,-25 L 190,-25 L 190,-61.70045 C 190,-69.0684 197.12795,-75 205.98196,-75 z" + id="path8059" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient9066);fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 628.36748,24.35 L 731.63253,24.35 C 740.50622,24.35 747.65001,30.31719 747.65001,37.72936 L 747.65001,74.650001 L 612.35001,74.650001 L 612.35001,37.72936 C 612.35001,30.31719 619.4938,24.35 628.36748,24.35 z" + id="path9064" + sodipodi:nodetypes="ccccccc" /> + <rect + style="opacity:1;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect8115" + width="790" + height="473" + x="5" + y="63" + rx="16" + ry="16" /> + <path + style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 15,159 L 15,192 L 785,192 L 785,159 L 15,159 z" + id="rect8598" /> + <rect + style="opacity:0.56187289;fill:url(#linearGradient8614);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect3328" + width="770" + height="30" + x="15" + y="159" /> + <rect + style="fill:#ffffff;fill-opacity:0.05119455;fill-rule:evenodd;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect4385" + width="770" + height="10.818295" + x="15" + y="159.1817" /> + <path + style="opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 15,191 L 15,510.6875 C 15,519.1767 21.95416,526 30.59375,526 L 769.40625,526 C 778.04584,526 785,519.17669 785,510.6875 L 785,191 L 15,191 z" + id="rect8236" + sodipodi:nodetypes="ccccccc" /> + <rect + style="opacity:1;fill:#454545;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.50156307;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect3418" + width="337" + height="224" + x="420" + y="216" + rx="21.921448" + ry="15.823508" /> + <path + style="opacity:0.38127088;fill:url(#linearGradient8041);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.50156307;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 444.54561,218 C 432.57402,218 422.94261,224.85814 422.94261,233.37058 L 422.94261,315 L 755.16259,315 L 755.16259,233.37058 C 755.16259,224.85814 745.53119,218 733.55959,218 L 444.54561,218 z" + id="rect8030" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#444444;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 15.5,190.5 L 15.5,510.1875 C 15.5,518.6767 22.44512,525.5 31.0735,525.5 L 768.9265,525.5 C 777.55487,525.5 784.5,518.67669 784.5,510.1875 L 784.5,190.5 L 15.5,190.5 z" + id="path8603" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient3531);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.50156307;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 755.24275,328.25078 L 755.24275,421.74921 C 755.24275,430.61321 744.20161,437.74921 730.48684,437.74921 L 448.11724,437.74921 C 434.40248,437.74921 423.36133,430.61321 423.36133,421.74921 L 423.36133,328.25078 L 755.24275,328.25078 z" + id="rect3520" + sodipodi:nodetypes="ccccccc" /> + <rect + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible" + id="rect8043" + width="332.21994" + height="218.99998" + x="422.5" + y="218.49998" + rx="21.610514" + ry="15.470304" /> + <path + style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 205.98196,23 L 309.01804,23 C 317.87204,23 325,28.931603 325,36.299555 L 325,73 L 190,73 L 190,36.299555 C 190,28.931603 197.12795,23 205.98196,23 z" + id="path3974" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:0.5;fill:url(#linearGradient3941);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 205.9852,26 C 197.1294,26 190,31.90833 190,39.252674 L 190,49 L 325,49 L 325,39.252674 C 325,31.908327 317.87061,26 309.0148,26 L 205.9852,26 z" + id="path3980" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="ccccccc" + id="path8754" + d="M 205.9852,26 C 197.1294,26 190,35.359573 190,46.993981 L 190,62.435029 L 325,62.435029 L 325,46.993981 C 325,35.359568 317.87061,26 309.0148,26 L 205.9852,26 z" + style="opacity:0.3;fill:url(#linearGradient8756);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:6.69999981;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 206.37096,24.35 L 309.63601,24.35 C 318.50969,24.35 325.65348,30.317192 325.65348,37.729353 L 325.65348,74.65 L 190.35349,74.65 L 190.35349,37.729353 C 190.35349,30.317192 197.49727,24.35 206.37096,24.35 z" + id="path3982" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.30716719999999997;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 30.59375,73 C 21.954155,73 15,79.823295 15,88.3125 L 15,160 L 785,160 L 785,88.3125 C 785,79.823299 778.04582,73 769.40625,73 L 30.59375,73 z" + id="rect8240" /> + <path + style="opacity:1;fill:url(#linearGradient8668);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 785,118 L 785,160 L 15,160 L 15,118 L 785,118 z" + id="path3199" + sodipodi:nodetypes="ccccc" /> + <rect + style="opacity:1;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect3255" + width="770" + height="1" + x="15" + y="159" /> + <path + style="opacity:0.59197322;fill:url(#linearGradient8641);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 31.5625,74 C 22.945346,74 16,80.798279 16,89.25 L 16,120 L 784,120 L 784,89.25 C 784,80.798279 777.05467,74 768.4375,74 L 31.5625,74 z" + id="rect8622" + sodipodi:nodetypes="ccccccc" /> + <rect + style="opacity:1;fill:#777777;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect8644" + width="770" + height="1" + x="15" + y="160" /> + <rect + style="opacity:1;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect8646" + width="30" + height="1" + x="160" + y="-16" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + style="opacity:1;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect8648" + width="30" + height="1" + x="160" + y="-785" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + style="opacity:1;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.3071672;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect8650" + width="360" + height="216" + x="30" + y="204" + rx="16" + ry="16" /> + <rect + style="opacity:1;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:#505050;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect3916" + width="150" + height="26" + x="593" + y="83" + rx="8" + ry="8" /> + <path + style="fill:#ad7fa8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 71.98196,-75 L 175.01804,-75 C 183.87205,-75 191,-69.0684 191,-61.70045 L 191,-25 L 56,-25 L 56,-61.70045 C 56,-69.0684 63.12795,-75 71.98196,-75 z" + id="path3262" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.84761554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 608.42381,-76.076192 L 711.5762,-76.076192 C 720.4402,-76.076192 727.5762,-70.067196 727.5762,-62.603108 L 727.5762,-25.423806 L 592.42381,-25.423806 L 592.42381,-62.603108 C 592.42381,-70.067196 599.55981,-76.076192 608.42381,-76.076192 z" + id="path2293" + sodipodi:nodetypes="ccccccc" /> + <g + id="layer6" + inkscape:label="Shadow" + transform="translate(840.61437,71.584306)" /> + <g + style="display:inline" + inkscape:label="Base" + id="g7880" + transform="translate(840.61437,71.584306)" /> + <g + id="g2637" + inkscape:label="base" + style="display:inline" + transform="translate(828.34924,119.0843)" /> + <g + id="g8947" + transform="matrix(0.4219464,0,0,0.4219464,399.82026,52.017442)"> + <g + transform="matrix(1.544052,0,0,1.536016,729.93452,37.392204)" + id="g2708"> + <path + style="color:#000000;fill:url(#linearGradient8963);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8965);stroke-width:0.67653471;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 76.796351,49.768459 L 77.443998,53.023634 L 82.625171,58.237128 C 82.817674,58.430832 83.596641,58.55743 84.56811,57.580878 C 85.53958,56.604326 85.463684,55.876998 85.215757,55.627773 L 80.034584,50.419494 L 76.796351,49.768459 z " + id="path2682" + sodipodi:nodetypes="cczzzcc" /> + <path + style="opacity:0.19215686;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 79.567301,51.320041 C 79.564315,51.331245 79.861402,51.644359 79.32201,52.185023 C 78.782611,52.725686 78.314866,52.559011 78.328524,52.545282 L 78.059375,51.023705 L 79.567301,51.320041 z " + id="path2687" + sodipodi:nodetypes="csccc" /> + </g> + <path + style="opacity:0.15294118;color:#000000;fill:url(#linearGradient8967);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.67653471;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 848.34401,113.329 C 848.08418,113.41651 847.93666,113.68904 848.00625,113.953 L 849.01953,118.94506 C 849.04481,119.03672 849.09488,119.11973 849.16428,119.18506 L 857.1258,127.20114 C 857.48262,127.5583 858.02126,127.6627 858.66986,127.53715 C 859.31845,127.41159 860.08224,127.00032 860.88943,126.19313 C 861.68995,125.39261 862.10254,124.67641 862.24048,124.03311 C 862.37841,123.38981 862.25449,122.80087 861.90271,122.44909 L 853.89294,114.48101 C 853.8142,114.40373 853.71283,114.3533 853.60344,114.33701 L 848.63352,113.329 C 848.53894,113.30186 848.43858,113.30186 848.34401,113.329 z " + id="path19908" + sodipodi:nodetypes="cccccsssccccc" /> + <path + transform="matrix(1.75,0,0,1.75,744.63708,93.962354)" + d="M 52.5,-5.78125 C 46.825411,-5.78125 42.21875,-1.1745894 42.21875,4.5 C 42.21875,10.174589 46.825411,14.78125 52.5,14.78125 C 58.174589,14.78125 62.78125,10.174589 62.78125,4.5 C 62.78125,-1.1745894 58.174589,-5.78125 52.5,-5.78125 z " + id="path8943" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8969);stroke-width:0.57142824;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + inkscape:original="M 52.5 -5.5 C 46.98 -5.5 42.5 -1.02 42.5 4.5 C 42.5 10.02 46.98 14.5 52.5 14.5 C 58.02 14.5 62.5 10.02 62.5 4.5 C 62.5 -1.02 58.02 -5.5 52.5 -5.5 z " + inkscape:radius="0.28571427" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:type="arc" + style="opacity:0.6;color:#000000;fill:url(#radialGradient8971);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path1425" + sodipodi:cx="17.5" + sodipodi:cy="18.25" + sodipodi:rx="13.5" + sodipodi:ry="13.75" + d="M 31 18.25 A 13.5 13.75 0 1 1 4,18.25 A 13.5 13.75 0 1 1 31 18.25 z" + transform="matrix(1.185185,0,0,1.163637,815.77134,80.600986)" /> + <path + style="opacity:0.5;color:#000000;fill:url(#radialGradient8973);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 835.94288,85.337354 C 827.42672,85.661396 820.61401,92.68671 820.61401,101.28173 C 820.61401,103.69865 822.01712,106.00352 823.10532,107.9936 C 822.63325,102.56542 824.97193,101.38042 826.52487,101.86253 C 831.23638,103.32522 839.41221,104.65474 847.812,100.26906 C 850.75667,98.7316 852.47386,102.49853 852.35621,99.112823 C 851.41677,91.318235 844.62623,85.337354 836.55838,85.337354 C 836.3521,85.337354 836.14727,85.329577 835.94288,85.337354 z " + id="path4939" + sodipodi:nodetypes="cscsscsc" /> + <path + transform="matrix(1.6,0,0,1.6,752.51208,94.637354)" + d="M 62.5 4.5 A 10 10 0 1 1 42.5,4.5 A 10 10 0 1 1 62.5 4.5 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="4.5" + sodipodi:cx="52.5" + id="path2607" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8975);stroke-width:1.87499988;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.04705882;color:#000000;fill:url(#radialGradient8977);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path23418" + sodipodi:cx="28.284271" + sodipodi:cy="30.145554" + sodipodi:rx="13.258252" + sodipodi:ry="4.5078058" + d="M 41.542523 30.145554 A 13.258252 4.5078058 0 1 1 15.026019,30.145554 A 13.258252 4.5078058 0 1 1 41.542523 30.145554 z" + transform="matrix(0.98756,0.175983,-0.12162,0.682489,827.0995,99.766204)" /> + <path + sodipodi:nodetypes="cczzzcc" + id="path17267" + d="M 849.79672,115.11595 L 850.41929,118.31717 L 857.91889,125.86595 C 858.28772,126.2372 858.85273,126.08385 859.78658,125.15 C 860.72043,124.21616 860.96121,123.74871 860.49754,123.28231 L 852.99794,115.73852 L 849.79672,115.11595 z " + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8979);stroke-width:0.99999934;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + transform="matrix(1.65,0,0,1.65,749.88708,94.412354)" + d="M 62.5 4.5 A 10 10 0 1 1 42.5,4.5 A 10 10 0 1 1 62.5 4.5 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="4.5" + sodipodi:cx="52.5" + id="path2605" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8981);stroke-width:0.60606074;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + transform="matrix(1.453172,0,0,1.453175,760.22054,95.298064)" + d="M 62.5 4.5 A 10 10 0 1 1 42.5,4.5 A 10 10 0 1 1 62.5 4.5 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="4.5" + sodipodi:cx="52.5" + id="path4927" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8983);stroke-width:0.68814939;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.16078431;color:#000000;fill:url(#radialGradient8985);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path11092" + sodipodi:cx="12.375" + sodipodi:cy="12.9375" + sodipodi:rx="9.8125" + sodipodi:ry="9.8125" + d="M 22.1875 12.9375 A 9.8125 9.8125 0 1 1 2.5625,12.9375 A 9.8125 9.8125 0 1 1 22.1875 12.9375 z" + transform="matrix(1.324842,0,0,1.324842,820.11716,84.697215)" /> + <path + sodipodi:type="arc" + style="opacity:0.072;color:#000000;fill:url(#radialGradient8987);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path2970" + sodipodi:cx="28.284271" + sodipodi:cy="30.145554" + sodipodi:rx="13.258252" + sodipodi:ry="4.5078058" + d="M 41.542523 30.145554 A 13.258252 4.5078058 0 1 1 15.026019,30.145554 A 13.258252 4.5078058 0 1 1 41.542523 30.145554 z" + transform="matrix(1.585832,0,0,1.204644,796.15797,86.154914)" /> + </g> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="slices" + style="display:inline"> + <rect + style="opacity:1;fill:#0000ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="header_lcap" + width="30" + height="96" + x="5" + y="63" + inkscape:label="header_lcap" /> + <rect + style="opacity:1;fill:#0000ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="header_rcap" + width="30" + height="96" + x="765" + y="63" + inkscape:label="header_rcap" /> + <rect + style="opacity:1;fill:#0000ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="footer_lcap" + width="30" + height="30" + x="5" + y="506" + inkscape:label="footer_lcap" /> + <rect + style="opacity:1;fill:#0000ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="footer_rcap" + width="30" + height="30" + x="765" + y="506" + inkscape:label="footer_rcap" /> + <rect + style="opacity:1;fill:#ff0000;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="header_bg" + width="5" + height="96" + x="35" + y="63" + inkscape:label="header_bg" /> + <rect + style="opacity:1;fill:#ff0000;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="footer_bg" + width="5" + height="30" + x="35" + y="506" + inkscape:label="footer_bg" /> + <rect + style="opacity:1;fill:#ffff00;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="menu_bg" + width="10" + height="32" + x="16" + y="159" + inkscape:label="menu_bg" /> + <rect + style="opacity:1;fill:#00ff00;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tabs_lcap" + width="7" + height="46" + x="187" + y="17" + inkscape:label="tabs_lcap" /> + <rect + style="opacity:1;fill:#800080;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_a_rcap" + width="12" + height="46" + x="311" + y="17" + inkscape:label="tab_a_rcap" /> + <rect + style="opacity:1;fill:#00ff00;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tabs_rcap" + width="6" + height="46" + x="745" + y="17" + inkscape:label="tabs_rcap" /> + <rect + style="opacity:1;fill:#ff00ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_a_lcap" + width="10" + height="46" + x="194" + y="17" + inkscape:label="tab_a_lcap" /> + <rect + style="opacity:1;fill:#00ff00;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tabs_spacer" + width="6" + height="46" + x="323" + y="17" + inkscape:label="tabs_spacer" /> + <rect + style="opacity:1;fill:#800080;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_rcap" + width="12" + height="46" + x="445" + y="17" + inkscape:label="tab_rcap" /> + <rect + style="opacity:1;fill:#ff00ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_lcap_ws" + width="10" + height="46" + x="329" + y="17" + inkscape:label="tab_lcap_ws" /> + <rect + style="opacity:1;fill:#ff0000;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_a_bg" + width="5" + height="46" + x="210" + y="17" + inkscape:label="tab_a_bg" /> + <rect + style="opacity:1;fill:#ff0000;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_bg" + width="5" + height="46" + x="339" + y="17" + inkscape:label="tab_bg" /> + <rect + style="opacity:1;fill:#ff00ff;fill-opacity:0.48464164;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="tab_lcap" + width="10" + height="46" + x="616" + y="17" + inkscape:label="tab_lcap" /> + <rect + style="opacity:1;fill:#ff6600;fill-opacity:0.47098975;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="search_bg" + width="153.25" + height="30.625" + x="591" + y="80.75" + inkscape:label="search_bg" /> + <rect + style="opacity:1;fill:#ff6600;fill-opacity:0.47098975;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="search_button" + width="20" + height="26" + x="744" + y="83" + inkscape:label="search_button" /> + </g> +</svg> diff --git a/img/cf_button_medium.png b/img/cf_button_medium.png Binary files differnew file mode 100644 index 0000000..c9efcfc --- /dev/null +++ b/img/cf_button_medium.png diff --git a/img/cf_footer_bg.png b/img/cf_footer_bg.png Binary files differnew file mode 100644 index 0000000..aba765b --- /dev/null +++ b/img/cf_footer_bg.png diff --git a/img/cf_footer_lcap.png b/img/cf_footer_lcap.png Binary files differnew file mode 100644 index 0000000..7824073 --- /dev/null +++ b/img/cf_footer_lcap.png diff --git a/img/cf_footer_rcap.png b/img/cf_footer_rcap.png Binary files differnew file mode 100644 index 0000000..9b30fdd --- /dev/null +++ b/img/cf_footer_rcap.png diff --git a/img/cf_header_bg.png b/img/cf_header_bg.png Binary files differnew file mode 100644 index 0000000..31e7f21 --- /dev/null +++ b/img/cf_header_bg.png diff --git a/img/cf_header_lcap.png b/img/cf_header_lcap.png Binary files differnew file mode 100644 index 0000000..5bffc47 --- /dev/null +++ b/img/cf_header_lcap.png diff --git a/img/cf_header_rcap.png b/img/cf_header_rcap.png Binary files differnew file mode 100644 index 0000000..4be27b6 --- /dev/null +++ b/img/cf_header_rcap.png diff --git a/img/cf_logo.png b/img/cf_logo.png Binary files differnew file mode 100644 index 0000000..9272193 --- /dev/null +++ b/img/cf_logo.png diff --git a/img/cf_logo_text.png b/img/cf_logo_text.png Binary files differnew file mode 100644 index 0000000..d7c3ac4 --- /dev/null +++ b/img/cf_logo_text.png diff --git a/img/cf_menu_bg.png b/img/cf_menu_bg.png Binary files differnew file mode 100644 index 0000000..0937742 --- /dev/null +++ b/img/cf_menu_bg.png diff --git a/img/cf_search_bg.png b/img/cf_search_bg.png Binary files differnew file mode 100644 index 0000000..f9dd95e --- /dev/null +++ b/img/cf_search_bg.png diff --git a/img/cf_search_button.png b/img/cf_search_button.png Binary files differnew file mode 100644 index 0000000..119951b --- /dev/null +++ b/img/cf_search_button.png diff --git a/img/cf_search_lcap.png b/img/cf_search_lcap.png Binary files differnew file mode 100644 index 0000000..921ce0f --- /dev/null +++ b/img/cf_search_lcap.png diff --git a/img/cf_tab_a_bg.png b/img/cf_tab_a_bg.png Binary files differnew file mode 100644 index 0000000..9b5a8eb --- /dev/null +++ b/img/cf_tab_a_bg.png diff --git a/img/cf_tab_a_lcap.png b/img/cf_tab_a_lcap.png Binary files differnew file mode 100644 index 0000000..b82d40d --- /dev/null +++ b/img/cf_tab_a_lcap.png diff --git a/img/cf_tab_a_rcap.png b/img/cf_tab_a_rcap.png Binary files differnew file mode 100644 index 0000000..77aa38b --- /dev/null +++ b/img/cf_tab_a_rcap.png diff --git a/img/cf_tab_bg.png b/img/cf_tab_bg.png Binary files differnew file mode 100644 index 0000000..f70f295 --- /dev/null +++ b/img/cf_tab_bg.png diff --git a/img/cf_tab_lcap.png b/img/cf_tab_lcap.png Binary files differnew file mode 100644 index 0000000..8eb31d0 --- /dev/null +++ b/img/cf_tab_lcap.png diff --git a/img/cf_tab_lcap_ws.png b/img/cf_tab_lcap_ws.png Binary files differnew file mode 100644 index 0000000..db7ee9d --- /dev/null +++ b/img/cf_tab_lcap_ws.png diff --git a/img/cf_tab_rcap.png b/img/cf_tab_rcap.png Binary files differnew file mode 100644 index 0000000..27c85e9 --- /dev/null +++ b/img/cf_tab_rcap.png diff --git a/img/cf_tabs_lcap.png b/img/cf_tabs_lcap.png Binary files differnew file mode 100644 index 0000000..088788d --- /dev/null +++ b/img/cf_tabs_lcap.png diff --git a/img/cf_tabs_rcap.png b/img/cf_tabs_rcap.png Binary files differnew file mode 100644 index 0000000..a95cecc --- /dev/null +++ b/img/cf_tabs_rcap.png diff --git a/img/cf_tabs_spacer.png b/img/cf_tabs_spacer.png Binary files differnew file mode 100644 index 0000000..2b68848 --- /dev/null +++ b/img/cf_tabs_spacer.png diff --git a/img/feed-icon.png b/img/feed-icon.png Binary files differnew file mode 100644 index 0000000..b3c949d --- /dev/null +++ b/img/feed-icon.png diff --git a/img/icons/contribute.png b/img/icons/contribute.png Binary files differnew file mode 100644 index 0000000..fc10d78 --- /dev/null +++ b/img/icons/contribute.png diff --git a/img/icons/download.png b/img/icons/download.png Binary files differnew file mode 100644 index 0000000..db5c52b --- /dev/null +++ b/img/icons/download.png diff --git a/img/icons/extend.png b/img/icons/extend.png Binary files differnew file mode 100644 index 0000000..5e84ff3 --- /dev/null +++ b/img/icons/extend.png diff --git a/img/icons/help.png b/img/icons/help.png Binary files differnew file mode 100644 index 0000000..d60425f --- /dev/null +++ b/img/icons/help.png diff --git a/img/icons/rss.png b/img/icons/rss.png Binary files differnew file mode 100644 index 0000000..62b8b66 --- /dev/null +++ b/img/icons/rss.png diff --git a/img/icons/use.png b/img/icons/use.png Binary files differnew file mode 100644 index 0000000..c3f14bc --- /dev/null +++ b/img/icons/use.png diff --git a/img/listicon.png b/img/listicon.png Binary files differnew file mode 100644 index 0000000..ed6a83e --- /dev/null +++ b/img/listicon.png diff --git a/index.php b/index.php new file mode 100644 index 0000000..8587f72 --- /dev/null +++ b/index.php @@ -0,0 +1,114 @@ +<?php +get_header(); +?> +<!-- content area --> + <div class="clear"></div> + + <div style="float:left;width:69%;"> +<!-- posts area --> + <?php if (is_page()) : the_post(); ?> + <?php the_content(); ?> + + <?php elseif (have_posts()) : ?> + <?php if (!is_home()) : ?> + <a href="<?php bloginfo('url'); ?>" style="font-size:11px">[Back]</a><br /><br /> + <?php endif ?> + <?php while (have_posts()) : the_post(); ?> + <div class="blogentry" id="post-<?php the_ID(); ?>"> + <h2> + <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a><br /> + <span> + by <a href="#"><strong><?php the_author(',') ?></strong></a>, + <?php the_time('l, F jS, Y') ?> @ <?php the_time() ?> + <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> + <?php wp_link_pages(); ?> + </span> + </h2> + <?php the_content(__('[more...]')); ?> + <?php the_tags(__('Tags: '), ', ', ' — '); ?> + </div> + <?php comments_template(); // Get wp-comments.php template ?> + <?php endwhile; ?> + + <?php else: ?> + <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> + <?php endif; ?> + + <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> +<!-- end posts area --> + </div> + + <div style="float:right;width:30%;"> + <!-- sidebar --> + <?php get_sidebar(); ?> + </div> + + <div class="clear"></div> + + </div> + </div> + + <div id="contentBlock"> + <div id="lowerContent"> + + <div id="lowerLeft"> + <h2><?php _e('Latest News') ?></h2> + <ul> + <?php + $news_url = "http://forum.compiz-fusion.org/external.php?type=RSS2&forumids=74&count=10"; + $rss = new jRSS (); + $rss->display ($news_url, + "type: RSS, titlelen: 37, items: 10"); + ?> + </ul> + <div class="rss-link"> + <a href="<?php echo $news_url; ?>" style="font-size:11px" class="rss-link" title="Planet Compiz RSS Feed"><img src="http://www.compiz-fusion.org/wp-content/themes/compizfusion/img/feed-icon.png" alt="Feed" />RSS Feed</a> + </div> + </div> + <div id="lowerMiddle"> + <h2><?php _e('Planet') ?></h2> + <ul> + <?php + // load planet xml (or use cached file and rebuild it each 10 minutes) + /* + $xml = cf_xml_load_file_cached("http://planet.compiz-fusion.org/atom.xml", 600); + // display planet + $max = 5; + $cnt = 0; + foreach ($xml->entry as $entry) { + $t = trim($entry->title); + if (strlen($t) > 40 && strpos($t, ' ')!=true) + $t = substr($t, 0, 30). '...'; + echo '<li>['.$entry->author->name.'] <a href="'.$entry->id.'" target="_blank">'.$t.'</a></li>'; + if ($cnt == $max) + break; + $cnt++; + } + */ + $rss = new jRSS (); + $rss->display ("http://planet.compiz-fusion.org/atom.xml", + "type: Atom, titlelen: 37, items: 10"); + ?> + </ul> + <div class="rss-link"> + <a href="http://planet.compiz-fusion.org/atom.xml" style="font-size:11px" class="rss-link" title="Planet Compiz RSS Feed"><img src="http://www.compiz-fusion.org/wp-content/themes/compizfusion/img/feed-icon.png" alt="Feed" />Atom Feed</a> + </div> + </div> + <div id="lowerRight"> + <h2><?php _e('Latest commits'); ?></h2> + <ul> + <?php + $rss = new jRSS (); + $rss->display ("http://cia.vc/stats/project/compiz-fusion/.rss", + "type: RSS, titlelen: 37, items: 10"); + ?> + </ul> + <div class="rss-link"> + <a href="http://cia.vc/stats/project/compiz-fusion/.rss" style="font-size:11px" class="rss-link" title="Planet Compiz RSS Feed"><img src="http://www.compiz-fusion.org/wp-content/themes/compizfusion/img/feed-icon.png" alt="Feed" />RSS Feed</a> + </div> + </div> + <div class="clear"></div> + +<!-- end content area --> + +<?php get_footer(); ?> @@ -0,0 +1,82 @@ +/* Based on Arabic (RTL) version of WordPress Classic theme, converted by Serdal (Serdal.com) */ + +#menu ul ul, #wp-calendar caption, #wp-calendar #prev a { text-align: right; } +#wp-calendar #next a, .feedback { text-align: left; } + +blockquote { + border-left: 0; + border-right: 5px solid #ccc; + margin-left: auto; + margin-right: 1.5em; + padding-left: 0; + padding-right: 5px; +} + +body { font-family: 'Geeza Pro', Tahoma, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; } + +h2 { font: 95% 'Al Bayan', 'Traditional Arabic', "Times New Roman", Times, serif; } + +p, li, .feedback { + font: 90%/175% 'Geeza Pro', Tahoma, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; + text-align: justify; +} + +acronym, abbr, span.caps, h2, p, li, #header, #menu ul li, #menu ul ul li, #wp-calendar td, .feedback, .meta, .meta a { letter-spacing: normal; } + +#commentlist li ul { + border-left: 0; + border-right: 1px solid #ddd; +} + +#content { + margin: 30px 3em 0 13em; + padding-right: 0; + padding-left: 60px; +} + +#header { + border-left: solid 1px #9a9; + border-right: solid 1px #565; + font: normal normal 230% 'Al Bayan', 'Traditional Arabic', 'Times New Roman', Times, serif; + padding: 15px 60px 15px 10px; +} + +#menu { + border-left: 0; + border-right: 1px dotted #ccc; + padding: 20px 30px 10px 0; + right: auto; + left: 2px; +} + +#menu form { margin: 0 13px 0 0; } + +#menu ul { + padding-left: 0; + padding-right: 3px; +} + +#menu ul li { font: normal normal 110% 'Geeza Pro', Tahoma, 'Times New Roman', Times, serif; } + +#menu ul ul li { + font: normal normal 12px/115% 'Geeza Pro', Tahoma, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; + padding-left: 0; + padding-right: 12px; +} + +#menu ul ul ul.children { + padding-left: 0; + padding-right: 4px; +} + +#wp-calendar #next a { + padding-right: 0; + padding-left: 10px; +} + +#wp-calendar #prev a { + padding-left: 0; + padding-right: 10px; +} + +#wp-calendar td { font: normal normal 12px 'Geeza Pro', Tahoma, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; } diff --git a/screenshot.png b/screenshot.png Binary files differnew file mode 100644 index 0000000..41bb7a4 --- /dev/null +++ b/screenshot.png diff --git a/search.php b/search.php new file mode 100644 index 0000000..14a85ee --- /dev/null +++ b/search.php @@ -0,0 +1,33 @@ +<?php get_header(); ?>
+ +<?php if (have_posts()) : ?>
+
+ <h2>Search results for: <i><?php echo $safe_s ?></i></h2> + <p>Your search returned <i><?php echo count($posts); ?></i> result(s) ...</p>
+
+ <?php $num=1; while (have_posts()) : the_post(); ?>
+
+ <div class="post"> + <h2> + <span style="font-size:14px"><?php echo $num ?>.</span> + <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title() ?></a> + </h2> + <div class="main"> + <?php the_content(__('(more...)')); ?> + </div> + <?php $num++;?> + </div> + <br /><br />
+
+ <?php endwhile; ?>
+
+<?php else : ?>
+ <div class="warning">
+ <h2>No Results for: <em><?php echo $safe_s ?></em></h2>
+ <p>Sorry, but you are looking for something that isn't here.</p>
+ </div>
+<?php endif; ?>
+
+ +<!-- End content --> +<?php get_footer(); ?>
\ No newline at end of file diff --git a/sidebar.php b/sidebar.php new file mode 100644 index 0000000..68c9b54 --- /dev/null +++ b/sidebar.php @@ -0,0 +1,23 @@ + +<!-- begin sidebar --> +<!--<div id="sidebar">--> + <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> + <div class="sidebar"> + <ul> + <li id="sidebar-download"> + <strong><a href="http://wiki.compiz-fusion.org/Distributions">Get it</a></strong> + Offer Compiz Fusion to your distribution. + </li> + <li id="sidebar-use"> + <strong><a href="http://wiki.compiz-fusion.org/">Use it</a></strong> + Read more about Compiz Fusion features and how to use them. + </li> + <li id="sidebar-contribute"> + <strong><a href="http://wiki.compiz-fusion.org/Development">Contribute</a></strong> + Feel free to <a href="http://wiki.compiz-fusion.org/Development">contribute code</a>, <a href="http://wiki.compiz-fusion.org/Contribute/Translate">translate Compiz Fusion</a> or <a href="http://wiki.compiz-fusion.org/Join_our_community">help out</a>! + </li> + </ul> + </div> + <?php endif; ?> +<!--</div>--> +<!-- end sidebar --> diff --git a/style.css b/style.css new file mode 100644 index 0000000..e7f9c1d --- /dev/null +++ b/style.css @@ -0,0 +1,67 @@ +/* +Theme Name: CompizFusion [Dark] +Theme URI: - +Description: Compiz Fusion website theme - Wordpress part +Version: 1.0 +Author: RYX (Rico Pfaus) + +The Compiz Fusion website layout. +*/ +@import url(fusion.css); +@import url(blue.css); + +#wp-calendar { + border: 1px solid #ddd; + empty-cells: show; + font-size: 14px; + margin: 0; + width: 90%; +} + +#wp-calendar #next a { + padding-right: 10px; + text-align: right; +} + +#wp-calendar #prev a { + padding-left: 10px; + text-align: left; +} + +#wp-calendar a { + display: block; + text-decoration: none; +} + +#wp-calendar a:hover { + background: #e0e6e0; + color: #333; +} + +#wp-calendar caption { + color: #999; + font-size: 16px; + text-align: left; +} + +#wp-calendar td { + color: #ccc; + font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; + letter-spacing: normal; + padding: 2px 0; + text-align: center; +} + +#wp-calendar td.pad:hover { + background: #fff; +} + +#wp-calendar td:hover, #wp-calendar #today { + background: #eee; + color: #bbb; +} + +#wp-calendar th { + font-style: normal; + text-transform: capitalize; +} diff --git a/tabmenu.inc.php b/tabmenu.inc.php new file mode 100644 index 0000000..a22d6a1 --- /dev/null +++ b/tabmenu.inc.php @@ -0,0 +1,57 @@ +<?php +// Very simple tabmenu ... (c) RYX (Rico Pfaus) 2007 ... released under the GPL2(+) + +// array with: entries, links and tooltips +global $e; +$e = array(); +$e[] = array('HOME', 'http://www.compiz-fusion.org', 'Frontpage'); +$e[] = array('WIKI', 'http://wiki.compiz-fusion.org', 'Help and Documentation'); +$e[] = array('PLANET', 'http://planet.compiz-fusion.org', 'Planet'); +$e[] = array('FORUMS', 'http://forum.compiz-fusion.org/', 'Community Forums'); + +// tabmenu creation function +function create_tabmenu($active_id, $right_text) { + global $e; + $withShadow = false; + $numEntries = count($e); + // open tabmenu + ?><div id="tabs"> + <div class="clear"></div> + <div id="tabsLeftCap"></div> +<?php + // output entries + for ($i=0; $i < $numEntries; $i++) { + // active entry? + if ($i == $active_id) { + ?> <div id="tabActiveLCap"></div> + <div id="tabActive"><div><a href="<?php echo $e[$i][1] ?>" title="<?php echo $e[$i][2] ?>"><?php echo $e[$i][0] ?></a></div></div> + <div id="tabActiveRCap"></div> +<?php $withShadow = true; // next entry needs a dropshadow + } else { + // inactive entry + if ($withShadow) { + $lcap = 'tabLCapWS'; + $withShadow = false; + } else + $lcap = 'tabLCap'; + ?> <div class="<?php echo $lcap; ?>"></div> + <div class="tab"><div><a href="<?php echo $e[$i][1] ?>" title="<?php echo $e[$i][2] ?>"><?php echo $e[$i][0] ?></a></div></div> + <div class="tabRCap"></div> +<?php } + // output spacer? + if ($i < $numEntries-1) { + ?> <div class="tabSpacer"></div> +<?php + } + } + // close tabmenu + ?> <div id="tabsRightCap"></div> + <div style="float:right;padding-top:10px;font-size:11px"> + <?php echo $right_text; ?> + </div> + <div class="clear"></div> + </div> +<?php +} + +?> |