-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-projects.php
More file actions
42 lines (36 loc) · 924 Bytes
/
Copy pathtemplate-projects.php
File metadata and controls
42 lines (36 loc) · 924 Bytes
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
<?php
/**
* @Packge : Kanox
* @Version : 1.0
* @Author : Colorlib
* @Author URI : http://colorlib.com/wp/
*
*
* Template Name: Projects Page
*/
get_header();
?>
<!-- portfolio start-->
<section class="our_latest_work section_padding">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-5">
<div class="section_tittle text-center">
<p><?php echo esc_html('Recent work', 'kanox')?></p>
<h2><?php echo esc_html('Creative work for client', 'kanox')?></h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<?php
kanox_portfolio_section( 3, 30, 'yes' );
?>
</div>
</div>
</div>
</section>
<!-- portfolio part end-->
<?php
get_footer();
?>