-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-part-first.php
50 lines (49 loc) · 2.02 KB
/
template-part-first.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
<!-- First -->
<section id="first" class="main">
<header>
<div class="container">
<?php $recent=new WP_Query( "category_name=o-zawodach");
while($recent->have_posts()) : $recent->the_post();?>
<h2><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
<?php endwhile; ?>
</div>
</header>
<div class="content dark style1 featured" id="firstdet">
<div class="container">
<div class="row">
<div class="8u">
<section id="cardId" class="flipcard h">
<div class="front">
<img src="<?php echo get_template_directory_uri(); ?>/img/sks.JPG" alt="Parking Strefy Kultury Studenckiej">
</div>
<div class="back">
<a href="https://www.google.com/maps/place/hoena+wronskiego+12/"><img src="<?php echo get_template_directory_uri(); ?>/img/mapa.JPG" alt="Zobacz na Mapach Google"></a>
</div>
</section>
</div>
<div class="4u">
<section>
<header>
<h3>Gdzie i kiedy?</h3>
</header>
<p>16 maja 2015 roku o 12:00 na parkingu Strefy Kultury Studenckiej Politechniki Wrocławskiej</p>
<button class="button switch">Zobacz na mapie</button>
<header>
</header>
</section>
</div>
<div class="clear"></div>
</div>
<div class="row">
<div class="12u">
<footer>
<a href="#second" class="no-border-bottom">
<i class="fa fa-4x fa-angle-down"></i>
</a>
</footer>
</div>
</div>
</div>
</div>
</section>