-
Notifications
You must be signed in to change notification settings - Fork 184
/
myndaalbum-header.php
26 lines (19 loc) · 1.04 KB
/
myndaalbum-header.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
<?php $my_query = new WP_Query('cat=63&showposts=4&orderby=rand'); ?>
<div class="grid gutter collapse600 myndaalbum-top">
<div class="col s1of3">
<p style="line-height: 25px;"><a href="/myndaalbum"><span class="cat-title"><i class="icon-camera"></i> Myndaalbúm Lemúrsins</span></a> geymir forvitnilegar ljósmyndir úr sögunnar rás. Flestar myndirnar eru frá opinberum stofnunum eða söfnum.</p>
</div>
<div class="col s2of3">
<div class="grid gutter photos top">
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="col s1of4">
<div class="myndaalbum-header-image">
<a class="aspect a4-3 image" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('sidebar'); ?>
</a>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>