Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions about.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<div class="sw-about abt-module grid_4 alpha">

<h3 class="module-title">StateImpact <? bloginfo('name'); ?></h3>
<h3 class="module-title">StateImpact <?php bloginfo('name'); ?></h3>
<div class="content"><?php the_content(); ?></div>

<ul class="sw-social clearfix">
Expand All @@ -42,7 +42,7 @@

</div><!-- .sw-about -->
<!-- <?php $state_img = strtolower( str_replace(' ', '', get_bloginfo('name'))); ?>
<img src="<?php bloginfo('stylesheet_directory'); ?>/img/dev-img/<?php echo $state_img; ?>.png" alt="<? bloginfo('name'); ?>" width="300" /> -->
<img src="<?php bloginfo('stylesheet_directory'); ?>/img/dev-img/<?php echo $state_img; ?>.png" alt="<?php bloginfo('name'); ?>" width="300" /> -->

<div class="abt-module grid_4 omega">
<h3 class="module-title">Partners</h3>
Expand Down Expand Up @@ -107,7 +107,7 @@
<h5><?php the_author_meta( 'sw_title', $user->ID ); ?></h5>
<p><?php the_author_meta( 'description', $user->ID ); ?></p>
</div><!-- /.abt-staff -->
<? endforeach; ?>
<?php endforeach; ?>
</div>


Expand Down
2 changes: 1 addition & 1 deletion featured-topics.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
'depth' => -1, // flatten items
'walker' => new SW_Featured_Topics_Walker
) ); ?>
<div class="alltopics"><a href="<? echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></div>
<div class="alltopics"><a href="<?php echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></div>
</div><!-- .grid_12 -->
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<!-- /#searchform-footer -->

<?php $topics = get_static_page('topic-index'); ?>
<h4><a href="<? echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></h4>
<h4><a href="<?php echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></h4>

</div>
<!-- /.grid_3 -->
Expand Down
4 changes: 2 additions & 2 deletions includes/collection-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
// $first_link = $links[0];
?>
<div class="topic-hed grid_12">
<h2 class="section-hed"><a href="<? echo get_permalink( $topics->ID ); ?>">Topics</a></h2>
<h2 class="section-hed"><a href="<?php echo get_permalink( $topics->ID ); ?>">Topics</a></h2>
<?php if ($topic->post_title): ?>
<?php echo get_the_post_thumbnail( $topic->ID, array(140, 140)); ?>
<h1><?php echo $topic->post_title; ?></h1>
<?php else: ?>
<h1><?php echo $cat->name; ?></h1>
<?php endif; ?>
<div class="alltopics"><a href="<? echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></div>
<div class="alltopics"><a href="<?php echo get_permalink( $topics->ID ); ?>">View All Topics &raquo;</a></div>
</div> <!-- /#coll-intro .grid_12 -->
2 changes: 1 addition & 1 deletion includes/sw-widgets.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function widget( $args, $instance ) {
<li><a href="<?php echo get_permalink( $about->ID ); ?>">Learn More &raquo;</a></li>
<?php if ( get_option( 'support_link' ) ): ?>
<li><a href="<?php echo get_option( 'support_link' ); ?>">Support <?php echo SITE_NAME_PREFIX . get_bloginfo( 'name' ); ?> &raquo;</a></li>
<?endif; ?>
<?php endif; ?>
</ul>

<ul class="sw-social clearfix">
Expand Down