forked from digitoimistodude/air-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
44 lines (35 loc) · 1.03 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
43
44
<?php
/**
* Template for displaying the footer
*
* Description for template.
*
* @Author: Roni Laukkarinen
* @Date: 2020-05-11 13:33:49
* @Last Modified by: Roni Laukkarinen
* @Last Modified time: 2022-09-07 11:57:45
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
* @package air-light
*/
namespace Air_Light;
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
<?php include get_theme_file_path( THEME_SETTINGS['logo'] ); ?>
</a>
</div>
<div class="col-2 text-end">
<span class="mb-3 mb-md-0 text-body-secondary">Code is poetry.</span>
</div>
</footer>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>