20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
/**
|
|
* Footer template part.
|
|
*
|
|
* @package AMP
|
|
*/
|
|
|
|
/**
|
|
* Context.
|
|
*
|
|
* @var AMP_Post_Template $this
|
|
*/
|
|
?>
|
|
<footer class="amp-wp-footer">
|
|
<div>
|
|
<h2><?php echo esc_html( wptexturize( $this->get( 'blog_name' ) ) ); ?></h2>
|
|
<a href="#top" class="back-to-top"><?php esc_html_e( 'Back to top', 'amp' ); ?></a>
|
|
</div>
|
|
</footer>
|