Completed
Push — master ( b3aa25...d459d9 )
by
unknown
02:24 queued 21s
created
base.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 -->
33 33
 <html <?php language_attributes()?>>
34 34
 	<head>
35
-		<meta charset="<?php bloginfo( 'charset' ) ?>" />
35
+		<meta charset="<?php bloginfo('charset') ?>" />
36 36
 		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
37 37
 		<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
38 38
 
39
-		<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ) ?> RSS2 Feed" href="<?php bloginfo( 'rss2_url' ) ?>" />
40
-		<link rel="pingback" href="<?php bloginfo( 'pingback_url' ) ?>" />
39
+		<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name') ?> RSS2 Feed" href="<?php bloginfo('rss2_url') ?>" />
40
+		<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
41 41
 
42
-		<title><?php wp_title( '&mdash;', true, 'right' ) ?><?php echo bloginfo( 'name' ) ?></title>
42
+		<title><?php wp_title('&mdash;', true, 'right') ?><?php echo bloginfo('name') ?></title>
43 43
 
44 44
 		<?php wp_head() ?>
45 45
 	</head>
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 			<div class="browserupgrade"></div>
50 50
 		<![endif]-->
51 51
 		<header>
52
-			<a href="<?php bloginfo( 'url' ); ?>" class="logo"><?php bloginfo( 'name' ) ?></a>
53
-			<?php if ( is_front_page() ) : ?>
52
+			<a href="<?php bloginfo('url'); ?>" class="logo"><?php bloginfo('name') ?></a>
53
+			<?php if (is_front_page()) : ?>
54 54
 				<div class="hero" id="map"></div>
55 55
 			<?php endif; ?>
56 56
 		</header>
@@ -64,19 +64,19 @@  discard block
 block discarded – undo
64 64
 
65 65
 							$sponsors = get_post_by_slug('sponsors');
66 66
 
67
-							echo '<div class="sponsors">' . apply_filters('the_content', $sponsors->post_content ) . '</div>';
67
+							echo '<div class="sponsors">'.apply_filters('the_content', $sponsors->post_content).'</div>';
68 68
 
69 69
 							$children = get_children([
70 70
 								'post_parent' => $sponsors->ID,
71 71
 								'post_status' => 'publish'
72
-							] );
72
+							]);
73 73
 						?>
74 74
 					</div>
75 75
 				</div>
76 76
 			</div>
77 77
 		</section>
78 78
 		<section class="wrap ruled">
79
-			<p>&copy;2015&mdash;<?php echo date( 'Y' ); ?> South London Makerspace</>
79
+			<p>&copy;2015&mdash;<?php echo date('Y'); ?> South London Makerspace</>
80 80
 			<p>Proud to be part of the London <a href="http://openworkshopnetwork.com/" target="_blank">Open Workshop Network</a></p>
81 81
 			<p>
82 82
 				Found an issue? <a href="https://github.com/southlondonmakerspace/wordpress-theme/issues" target="_blank">Let us know</a> or
Please login to merge, or discard this patch.