projects
/
WP-Themes
/
upwatertrails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8d490b
)
Added timestamp to home.php in the blog post footer
author
Anthony Talarico
<talarico@gaslightmedia.com>
Fri, 20 Nov 2015 19:35:38 +0000
(14:35 -0500)
committer
Anthony Talarico
<talarico@gaslightmedia.com>
Fri, 20 Nov 2015 19:35:38 +0000
(14:35 -0500)
home.php
patch
|
blob
|
history
diff --git
a/home.php
b/home.php
index
e02eb48
..
dececad
100644
(file)
--- a/
home.php
+++ b/
home.php
@@
-40,7
+40,8
@@
$cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug );
echo ', <a rel="category" title="View all posts in '. $cat->name . ' " href="'. $cat->slug .'">'. $cat->name .'</a>';
}
- echo '.';
+ echo ' on ';
+ echo ' <span class="meta date"> ' . the_time('F jS, Y') . '</span>';
}
?>
</footer>