-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathem-captacao.php
59 lines (42 loc) · 2.07 KB
/
em-captacao.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
<?php /* Template name: Em Captação */ get_header( 'projetos' ); ?>
<div id="conteudo-projetos">
<div id="bg-projetos">
<div id="esquerda-projetos">
<div class="hack-fixed">
<img src="<?php bloginfo( 'stylesheet_directory' ); ?>/imagens/personagem-gallo-projetos.png" width="193" height="475" />
</div><!-- .hack-fixed -->
</div><!-- #esquerda-projetos -->
<div id="centro-projetos">
<div id="superior-centro-projetos">
<div id="titulo-projetos">
</div><!-- #titulo-projetos -->
<div id="captacao-realizados">
<div id="btn-captacao">
<span class="span-btn-captacao"></span>
</div><!-- #btn-captacao -->
<div id="btn-realizados">
<a class="a-btn-realizados" href="<?php bloginfo( 'url' ); ?>/projetos/"></a>
</div><!-- #btn-realizados -->
</div><!-- #captacao-realizados -->
</div><!-- #superior-centro-projetos -->
<div id="linha-sup"></div>
<!-- Inicio Loop -->
<?php query_posts( array( 'projetos_category' => 'em-captacao' ) ); ?>
<?php if( is_tax() ) { global $wp_query; } ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post-projetos">
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a>
</div><!-- .post-projetos -->
<?php endwhile; else: ?>
<?php endif; ?>
<!-- Fim Loop -->
<div id="linha-inf"></div>
</div><!-- #centro-projetos -->
<div id="direita-projetos">
<div class="hack-fixed">
<img src="<?php bloginfo( 'stylesheet_directory' ); ?>/imagens/personagem-elena-projetos.png" height="475" />
</div><!-- .hack-fixed -->
</div><!-- #direita-projetos -->
</div><!-- #bg-projetos -->
</div><!-- #conteudo-projetos -->
<?php get_footer( 'projetos' ); ?>