-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (43 loc) · 1 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
<?php get_header();?>
<div class="main-container">
<div id="nav-container">
<?php
wp_nav_menu(array(
'theme_location' => 'telerk-top-menu',
'container' => 'nav',
'menu_class' => 'nav'
))
?>
<div class="clear"></div>
</div>
</div>
<div class="main-container">
<div class="container1">
<h1>Изминали проекти</h1>
<div class="box">
<?php
if(have_posts()):
while (have_posts()):
the_post();
?>
<div class="portfolio">
<div class="tagline_left">
<h2><?php the_title();?></h2>
<?php the_content();?>
<p> </p>
</div>
<div class="tagline_right">
<a href="<?php echo get_template_directory_uri();?>/images/folio.jpg" data-gal="prettyPhoto" title="Title"><img
src="<?php echo get_template_directory_uri();?>/images/folio.jpg" alt="" /></a>
</div>
<div class="clear"></div>
</div>
<?php
endwhile;
endif;
?>
<div class="clear"></div>
</div>
</div>
</div>
<?php get_footer();?>