-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
93 lines (79 loc) · 3.65 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
85
86
87
88
89
90
91
92
93
<?php get_header(); ?>
<div id="pre_content">
<div id="pre_content_esq">
<div class="introduction-text">
<h1>Què és Softvalencià?</h1>
Softvalencià és un lloc web on trobareu guies i programari per a posar el vostre ordinador en valencià.
<h3>Qui hi ha al darrere?</h3>
Softvalencià és una iniciativa dels membres valencians de Softcatalà i d'Escola Valenciana per a promoure l'ús del programari en valencià.
Softvalencià té el reconeixement dels serveis lingüístics de les universitats públiques valencianes i de l'Acadèmia Valenciana de la Llengua.
<div class="imatges_br">
<a href="http://www.softcatala.org"><img src="https://www.softvalencia.org/wp-content/uploads/2010/03/sc-xic-e1269881754771.png"/></a>
<a href="http://www.escolavalenciana.org"><img src="https://www.softvalencia.org/wp-content/uploads/2010/03/ev-xic1.png"/></a>
</div>
<br/>
</div>
</div>
<div id="pre_content_dreta">
<div class="slides">
<?php echo do_shortcode("[metaslider id=1095]"); ?>
</div>
</div>
</div>
<div id="content1">
<div id="windows" class="sistema">
<a href="<?php echo get_home_url(); ?>/categoria/windows"><img src="<?php echo get_home_url(); ?>/imatges/windowsos.png"/></a>
<ul>
<?php
$windows = new WP_Query('cat=3&posts_per_page=15&post_type=guies');
while ($windows->have_posts()) {
$windows->the_post();
echo '<li><a href="', get_permalink(get_the_ID()), '">';
the_title();
echo '</a><br /><small>';
$d_curta = get_post_custom_values('descripcio_portada');
echo $d_curta[0];
echo '</small></li>';
}
?>
</ul>
</div>
<div id="mac" class="sistema">
<a href="<?php echo get_home_url(); ?>/categoria/macosx"><img src="<?php echo get_home_url(); ?>/imatges/macos.png"/></a>
<ul>
<?php
$windows = new WP_Query('cat=15&posts_per_page=15&post_type=guies');
while ($windows->have_posts()) {
$windows->the_post();
echo '<li><a href="', get_permalink(get_the_ID()), '">';
the_title();
echo '</a><br /><small>';
$d_curta = get_post_custom_values('descripcio_portada');
echo $d_curta[0];
echo '</small></li>';
}
?>
</ul>
</div>
<div id="linux" class="sistema">
<a href="<?php echo get_home_url(); ?>/categoria/gnulinux"><img src="<?php echo get_home_url(); ?>/imatges/linuxos.png"/></a>
<ul>
<?php
$windows = new WP_Query('cat=5&posts_per_page=15&post_type=guies');
while ($windows->have_posts()) {
$windows->the_post();
echo '<li><a href="', get_permalink(get_the_ID()), '">';
the_title();
echo '</a><br /><small>';
$d_curta = get_post_custom_values('descripcio_portada');
echo $d_curta[0];
echo '</small></li>';
}
?>
</ul>
</div>
</div>
<div id="sidebar">
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>