-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
42 lines (34 loc) · 1.29 KB
/
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
33
34
35
36
37
38
39
40
41
42
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Really Simple
*/
?>
<footer class="footer">
<div class="container">
<small class="footer__copy">
© <?php echo date( 'Y' ); ?> <?php bloginfo( 'name' ); ?>
</small>
<section class="footer__info">
<span>/</span>
<span class="footer__info-text">
<?php esc_html_e( 'Theme:', 'really-simple' ); ?>
</span>
<a class="footer__info-link" href="<?php echo esc_url( 'https://wordpress.org/themes/really-simple/', 'really-simple' ); ?>" target="_blank" rel="noreferrer noopener"><?php esc_html_e( 'Really Simple', 'really-simple' ); ?></a> <span>/</span>
<span class="footer__info-text">
<?php esc_html_e( 'License:', 'really-simple' ); ?>
</span>
<a class="footer__info-link" href="<?php echo esc_url( 'https://www.gnu.org/licenses/gpl-3.0.html', 'really-simple' ); ?>" target="_blank" rel="noreferrer noopener">
<?php esc_html_e( 'GPLv3', 'really-simple' ); ?>
</a>
</section>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>