-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
84 lines (68 loc) · 3.52 KB
/
index.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
77
78
79
80
81
82
83
84
<?php get_header(); ?>
<div class="destaques container">
<div id="featured">
<?php query_posts('cat=3&showposts=5');
$i = 1;
while (have_posts()) : the_post(); ?>
<div class="content" style="width: 710px; height: 255px;<?php if ($i > 1) { ?> left: -710px;<?php } ?>">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail( array(710,255), 'home-post-thumbnail' ); ?>
</a>
<div class="description">
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
</div>
</div>
<?php
$i++;
if($i > 5) $i = 1;
endwhile;
?>
</div>
</div>
<div class="pages">
<ul>
<li>
<a href="<?php echo home_url( '/' ); ?>sobre-a-central-de-servicos/" title="Sobre a Central de Serviços">
<img src="<?php bloginfo('template_directory') ?>/images/sobre-a-central.jpg" alt="Sobre a Central de Serviços" />
</a>
<h3>Sobre a <strong>Central de Serviços</strong></h3>
<p>Conheça como funciona, sua composição e formas de atendimento</p>
<a href="<?php echo home_url( '/' ); ?>sobre-a-central-de-servicos" class="mais">+ saiba mais</a>
</li>
<li>
<a href="<?php echo home_url( '/' ); ?>parque-computacional" title="Parque Computacional">
<img src="<?php bloginfo('template_directory') ?>/images/parque-computacional.jpg" alt="Parque Computacional" />
</a>
<h3>Parque <strong>Computacional</strong></h3>
<p>Saiba a quantidade e os tipos de equipamentos existentes na sede e nos Cartórios Eleitorais.</p>
<a href="<?php echo home_url( '/' ); ?>parque-computacional" class="mais">+ saiba mais</a>
</li>
<li class="last">
<a href="<?php echo home_url( '/' ); ?>categoria/tutoriais" title="Nossos Tutoriais">
<img src="<?php bloginfo('template_directory') ?>/images/tutoriais.jpg" alt="Nossos Tutoriais" />
</a>
<h3>Nossos <strong>Tutoriais</strong></h3>
<p>Consulte nossos tutoriais sobre instalações e configurações de equipamentos e sistemas.</p>
<a href="<?php echo home_url( '/' ); ?>categoria/tutoriais" class="mais">+ saiba mais</a>
</li>
</ul>
</div>
<div class="links">
<h3>Links</h3>
<ul class="listalinks">
<?php
$bookmarks = get_bookmarks( array( 'orderby' => 'id', 'order' => 'ASC' ));
foreach ( $bookmarks as $bm ) {
echo "<li>
<a href='{$bm->link_url}'>
<img src='" . home_url( '/' ) . "wp-content/themes/" . get_template() . "{$bm->link_image}' alt='{$bm->link_name}' width='94' height='99' />
{$bm->link_name}</a>
</li>";
}
?>
</ul>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>