-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-artigo.php
73 lines (61 loc) · 3.59 KB
/
single-artigo.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
$permalink = get_the_permalink();
$excerpt = get_the_excerpt();
get_header();
?>
<?php
require_once get_template_directory() . '/template-parts/banner-home/index.php';
?>
<section class="saiba" id="saiba">
<div class="container-fluid">
<div class="row px-3 titlePrimeRow">
<div class="boxTitlePrime">
<span class="barrerLateral"></span>
<p class="title"><?php echo the_title(); ?><span class="barrerHorizontal"></span></p>
<h5 class="subtitle">Artigo</h5>
</div>
<div class="boxDescriptionPrime">
<small class="description"><?php echo wp_strip_all_tags($excerpt); ?></small>
</div>
<div class="d-flex justify-content-end align-items-center mt-3" style="gap: 25px;">
<div class="boxSocialsButtons justify-content-center align-items-center">
<a href="#" class="social">
<i class="fa-brands fa-whatsapp"></i>
</a>
<a href="#" class="social">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="#" class="social">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
<div class="boxAutorArtigos d-flex justify-content-center align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="28.629" height="31.944" viewBox="0 0 28.629 31.944">
<g id="Grupo_3127" data-name="Grupo 3127" transform="translate(0)">
<g id="Grupo_3126" data-name="Grupo 3126">
<g id="Grupo_3125" data-name="Grupo 3125">
<path id="Caminho_1279" data-name="Caminho 1279" d="M121.807,201.248A1.248,1.248,0,0,0,120.559,200H107.707a1.248,1.248,0,0,0,0,2.5h12.853A1.248,1.248,0,0,0,121.807,201.248Z" transform="translate(-101.475 -187.522)" fill="#3b425c" />
<path id="Caminho_1280" data-name="Caminho 1280" d="M107.707,280a1.248,1.248,0,0,0,0,2.5h7.806a1.248,1.248,0,0,0,0-2.5Z" transform="translate(-101.475 -262.53)" fill="#3b425c" />
<path id="Caminho_1281" data-name="Caminho 1281" d="M35.735,29.449H31.561a2.5,2.5,0,0,1-2.5-2.5V4.991a2.5,2.5,0,0,1,2.5-2.5H46.9a2.5,2.5,0,0,1,2.5,2.5v7.674a1.248,1.248,0,0,0,2.5,0V4.991A5,5,0,0,0,46.9,0H31.561A5,5,0,0,0,26.57,4.991V26.953a5,5,0,0,0,4.991,4.991h4.173a1.248,1.248,0,0,0,0-2.5Z" transform="translate(-26.57)" fill="#3b425c" />
<path id="Caminho_1282" data-name="Caminho 1282" d="M257.459,273.119a3.747,3.747,0,0,0-5.293,0l-6.851,6.836a1.248,1.248,0,0,0-.313.521l-1.492,4.912a1.248,1.248,0,0,0,1.527,1.565l5.037-1.4a1.248,1.248,0,0,0,.548-.319l6.836-6.824A3.748,3.748,0,0,0,257.459,273.119Zm-8.367,10.12-2.534.7.742-2.441,4.623-4.612,1.765,1.765Zm6.6-6.591-.242.241-1.765-1.765.241-.24a1.248,1.248,0,0,1,1.766,1.764Z" transform="translate(-229.925 -255.052)" fill="#3b425c" />
<path id="Caminho_1283" data-name="Caminho 1283" d="M120.559,120H107.707a1.248,1.248,0,0,0,0,2.5h12.853a1.248,1.248,0,0,0,0-2.5Z" transform="translate(-101.475 -112.513)" fill="#3b425c" />
</g>
</g>
</g>
</svg>
<span style="font-size: 17px;">Por <?php echo get_the_author_meta('display_name'); ?> - <?php the_time('d/m/Y'); ?></span>
</div>
</div>
<hr>
</div>
<div class="row">
<h5 class="contentTitle"><?php echo the_title(); ?></h5>
<div class="contentParagraph"><?php echo the_content(); ?></div>
</div>
</div>
</section>
<?php
require_once get_template_directory() . '/template-parts/artigos-relacionados/index.php';
require_once get_template_directory() . '/template-parts/contato/index.php';
?>
<?php get_footer(); ?>