-
Notifications
You must be signed in to change notification settings - Fork 8
/
footer.php
executable file
·32 lines (27 loc) · 1023 Bytes
/
footer.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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package urban
*/
?>
</div><!-- #content -->
<div class="site-description content-area">
<p>
Portfolio and journal of <a href="http://twitter.com/gravityonmars">Ricardo Rauch</a>, a designer/developer. <br/>
He lives in Buenos Aires, works on <a href="http://auth0.com">Auth0</a> and writes about Design and Development.</p>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php do_action( 'urban_credits' ); ?>
<a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'urban' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'urban' ), 'urban', '<a href="http://underscores.me/" rel="designer">Underscores.me</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>