-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
61 lines (49 loc) · 2.25 KB
/
Copy pathfooter.php
File metadata and controls
61 lines (49 loc) · 2.25 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php $contato = get_page_by_title('contato'); ?>
<footer class="footer">
<div class="footer-fundo">
<div class="container">
<div class="logos-footer grid-4">
<div class="goclasses-footer-logo">
<a href="<? site_url(); ?>"><img src="<?php echo get_template_directory_uri(); ?>/img/logo_nome.svg" alt="logo goclasses"></a>
</div>
<div class="utfpr-footer-logo">
<a href="http://www.utfpr.edu.br/campus/santahelena" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/img/utfpr.png" alt="logo utfpr"></a>
</div>
<div class="byncsa-footer">
<a href="https://creativecommons.org/licenses/by-nc-sa/3.0/br/" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/img/by-nc-sa.svg" alt="by-nc-sa svg"></a>
</div>
</div>
<div class="links-uteis grid-5">
<h2>links úteis</h2>
<div class="links-foooter">
<?php the_field('link_util', $contato); ?>
</div>
</div>
<div class="contato-footer grid-3">
<h2>contato</h2>
<p><?php the_field('email', $contato); ?></p>
<p><?php the_field('telefone', $contato); ?></p>
<p><?php the_field('localizacao', $contato); ?></p>
<div class="links-redes-contato">
<div class="github-redes">
<a href="<?php the_field('link_github', $contato); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/img/github.svg" alt="github logo"></a>
</div>
<div class="instagram-redes">
<a href="<?php the_field('link_instagram', $contato); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/img/instagram.svg" alt="instagram logo"></a>
</div>
<div class="facebook-redes">
<a href="<?php the_field('link_facebook', $contato); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/img/facebook.svg" alt="facebook logo"></a>
</div>
</div>
</div>
</div>
</div>
<div class="copy">
<div class="container">
<p class="grid-12">GoClasses©<?php echo date('Y'); ?> - Alguns direitos reservados.</p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>