-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
78 lines (51 loc) · 3.18 KB
/
category.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
74
75
76
<?php get_header(); ?>
<div class="container conteudo-categoria">
<div class="row">
<div class="col-md-8" id="post-psocial" >
<h4><?php single_cat_title('OSS... '); ?></h4>
<!-- CATEGORIAS-->
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="media">
<div class="media-left">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('img-psocial', array('class' => 'media-object img-responsive img-thumbnail')); ?></a>
</div>
<div class="media-body">
<h1 class="media-heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p class="visible-lg"><?php echo rwmb_meta('resumo'); ?></p>
</div>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
<!-- fim CATEGORIAS-->
<?php get_sidebar(); ?>
</div>
</div>
<!-- Fim container-->
<div class=" container apoio">
<div class="row">
<div class="col-xs-9 col-md-3">
<a href="#" class="thumbnail">
<img src="http://placehold.it/360x170" class="img-responsive" alt="" title="" >
</a>
</div>
<div class="col-xs-9 col-md-3">
<a href="#" class="thumbnail">
<img src="http://placehold.it/360x170" class="img-responsive" alt="" title="" >
</a>
</div>
<div class="col-xs-9 col-md-3">
<a href="#" class="thumbnail">
<img src="http://placehold.it/360x170" class="img-responsive" alt="" title="" >
</a>
</div>
<div class="col-xs-9 col-md-3">
<a href="#" class="thumbnail">
<img src="http://placehold.it/360x170" class="img-responsive" alt="" title="" >
</a>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>