forked from iagowesley/learninglab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
50 lines (41 loc) · 2.26 KB
/
footer.php
File metadata and controls
50 lines (41 loc) · 2.26 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
<footer>
<a <?php if(is_page('home') == true ) { echo 'ativo';} ?>" aria-current="home" href="<?php echo get_home_url(); ?>/home"><img src="<?php echo get_template_directory_uri(); ?>/assets/imgs/logo-colorida.png" alt="imagem logo" class="logo"></a>
<div class="conteiner-footer">
<div>
<a><h4>Sobre</h4></a>
<ul>
<li><a <?php if(is_page('cursos') == true ) { echo 'ativo';} ?>" aria-current="cursos" href="<?php echo get_home_url(); ?>/sobre">Nossa equipe</a></li>
<li><a a <?php if(is_page('blog') == true ) { echo 'ativo';} ?>" aria-current="blog" href="<?php echo get_home_url(); ?>/blog">Iniciativas</a></li>
</ul>
<a href="https://www.instagram.com/learninglabufc/" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/assets/imgs/icone_insta.png" alt="icone instagram" class="icone-redeSocial"></a>
<a href="https://www.linkedin.com/company/projeto-learninglab/" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/assets/icons/icone-linkedin-verde.svg" alt="icone linkedin" class="icone-redeSocial"></a>
</div>
<div>
<a><h4>Contato</h4></a>
<ul >
<li>
<img src="<?php echo get_template_directory_uri(); ?>/assets/imgs/icone_email.png" alt="icone email" >
<p>learninglab@ufc.br</p>
</li>
<li>
<img src="<?php echo get_template_directory_uri(); ?>/assets/imgs/icone_tel.png" alt="icone telefone">
<p>(88) 3411-2143</p>
</li>
</ul>
</div>
<div>
<a><h4>Alguns dos nossos cursos</h4></a>
<ul>
<li>SCRUM na prática</li>
<li>Desenvolvimento web</li>
<li>Git e Github</li>
<li>Código limpo</li>
<li>Figmatizando ideias</li>
</ul>
</div>
</div>
<p>Todos os direitos reservados. 2022.</p>
</footer>
<?php wp_footer(); ?>
</body>
</html>