forked from codeforamerica/cfawp2012
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-involved-template.php
executable file
·72 lines (58 loc) · 3.64 KB
/
get-involved-template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* The template for displaying all pages.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
/*
Template Name: Get Involved
*/
get_header(); ?>
<div class="wrap clearfix" id="involved">
<div id="maincontent">
<h2 class="ttl">5 Ways You Can Make a Difference <a href="#" class="red-btn"><span>Share This +</span></a></h2>
<ul id="the-ways" class="clearfix">
<li><a href="/donate"><img src="<?php bloginfo( 'template_url' ); ?>/images/donate.jpg" alt="Donate" /><strong>1</strong> Donate <span>»</span></a></li>
<li><a href="http://action.codeforamerica.org/page/share/cfa"><img src="<?php bloginfo( 'template_url' ); ?>/images/spread-the-world.jpg" alt="Spread the Word" /><strong>2</strong> Spread the Word <span>»</span></a></li>
<li><a href="http://action.codeforamerica.org/page/s/2011-signup"><img src="<?php bloginfo( 'template_url' ); ?>/images/contribute-code.jpg" alt="Contribute Some Code" /><strong>3</strong> Contribute Some Code <span>»</span></a></li>
<li><a href="/cities/citizen-action-center"><img src="<?php bloginfo( 'template_url' ); ?>/images/contact-your-city.jpg" alt="Contact Your City" /><strong>4</strong> Contact Your City <span>»</span></a></li>
<li><a href="/sponsor"><img src="<?php bloginfo( 'template_url' ); ?>/images/become-a-partner.jpg" alt="Become a Partner" /><strong>5</strong> Become a Partner <span>»</span></a></li>
</ul>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
<?php endwhile; ?>
<div class="wrap" id="cfa-blog" style="">
<div class="ttl">
<a href="http://c4a.me/feed/" class="like-btn" id="ttl-rss">RSS</a> GET INVOLVED <a href="/blog" class="more">Go to Blog</a>
</div>
<?php query_posts('showposts=3&category_name=get-involved'); ?>
<div>
<div id="maincontent">
<div class="ttl">
<?php $headerimg="headerimg"; echo get_post_meta($post->ID, $headerimg, true); ?>
</div>
<?php $blogtitle = get_post_meta($post->ID, 'blogtitle', true);
$blogdesc = get_post_meta($post->ID, 'blogdesc', true); ?>
<?php get_template_part( 'loop' ); ?>
</div>
</div>
</div>
</div>
<div class="right-col" id="featured-partners">
<ul>
<li><h3>Featured Partners & Supporters <span></span></h3></li>
<li><a href="http://www.knightfoundation.org" title="Knight Foundation"><img src="<?php bloginfo('template_directory'); ?>/images/logos/knight-logo.png"></a></li>
<li><a href="http://www.omidyar.com/" title="Omidyar Foundation"><img src="<?php bloginfo('template_directory'); ?>/images/logos/on-logo.png"></a></li>
<li><a href="http://www.rockefellerfoundation.org/" title="Rockefeller Foundation"><img src="<?php bloginfo('template_directory'); ?>/images/logos/rockefeller-logo.png"></a></li>
<li><a href="http://www.casefoundation.org" title="Case Foundation"><img src="<?php bloginfo('template_directory'); ?>/images/logos/case-logo.png"></a></li>
<li><a href="http://www.esri.com" title="ESRI"><img src="<?php bloginfo('template_directory'); ?>/images/logos/esri-logo.png"></a></li>
<li><a href="http://www.oreillymedia.com" title="O'Reilly Media "><img src="<?php bloginfo('template_directory'); ?>/images/logos/oreilly-logo.png"></a></li>
<li><a href="http://www.sunlightfoundation.com" title="Sunlight Foundation"><img src="<?php bloginfo('template_directory'); ?>/images/logos/sunlight-logo.png"></a></li>
</ul>
<div id="bg-end"></div>
</div>
</div>
<?php get_footer(); ?>