-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·48 lines (31 loc) · 2.14 KB
/
index.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
<?php get_header(); ?>
<div id='indexpage'>
<p style="margin-top: -10px; margin-bottom: 20px; padding-left: 15px; padding-right: 15px; line-height: 180%;">Thank you for agreeing to help us select the 2012 Code for America Fellows. Your input is critical to our success next year. For a fair decision, we'd like at least 4-5 reviews per candidate, so <strong>please review as many candidates as you can, rating them on a scale of 1-5 stars.</strong> (Some have reviewed over 20!) Feel free to select any which you're interested in or relate to your area of expertise, as listed below. If you have any questions, please don't hesitate to <a href="mailto:[email protected]">get in touch</a>.<br /><br />
Before you review candidates, it may be helpful to review our brief <strong><a href="http://sortinghat.codeforamerica.org/how-the-teams-work/">descriptions of the team roles</a></strong> and <strong><a href="http://sortinghat.codeforamerica.org/what-were-looking-for/">what we’re looking for</a></strong>.<br /><br />
<strong>Skillset Groups:</strong> <?php
$args=array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($args);
foreach($categories as $category) {
echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a>, '; }
?>
<!--<br /><br />
<strong>Selection Committee:</strong>
<?php wp_tag_cloud('format=flat&orderby=name&smallest=9&largest=9&separator=, '); ?>
<br /><br />
To get started, just select your name from above or scroll down to select an applicant. We really appreciate your help!-->
</p>
<?php include_once("entry.php"); ?>
<div class="navigation">
<?php previous_posts_link("<span style='float: right;'>Newer Entries »</span>"); ?>
<?php next_posts_link("<span>« Older Entries</span>"); ?>
</div>
</div>
<?php global $options; if( $options['expandfirst'] == 1 ) : ?>
<script language='JavaScript'>
showIndexPost.call($('#indexpage > .post:first .posttitlebar'));
</script>
<?php endif; ?>
<?php get_footer(); ?>