-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.php
29 lines (28 loc) · 883 Bytes
/
page-about.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
<?php /* Template Name: About us */ ?>
<?php get_header(); ?>
<section class="about-us-page wrap-page">
<div class="bread-wrap">
<div class="container">
<div>
<a href="<?php echo home_url('/'); ?>"><?php echo __('Acasă', 'platforma'); ?> <i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
<span><?php the_title(); ?></span>
</div>
</div>
</div>
<div class="container">
<h1 class="title-wrap"><?php the_title(); ?></h1>
<div class="wrap-page-row">
<div class="row">
<div class="col-lg-9 col-md-6">
<div class="content-wrap">
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<?php the_content() ;?>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_sidebar( 'without-news' ); ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>