Files
old-saburly-blog/single.php
Edin Dazdarevic 3a78507cf5 Newest
2017-11-06 01:22:24 +01:00

114 lines
4.8 KiB
PHP

<?php get_header(); ?>
<?php if( have_posts() ) the_post(); ?>
<!-- Start blog image -->
<section>
<div>
<div class="banner container">
<a href="Blog-menu.html"><img class="arrow-back"src="img/arrow-back.svg"></a>
</div>
</div>
</section>
<!-- End blog image -->
<!-- Start blog title -->
<section>
<div class="blog-container ">
<div class="row">
<div class="blog-intro space20">
<h2 class="med-title text-center"><?php the_title(); ?></h2>
</div>
</div>
<div class="flex-center space20">
<p class="details2 text-center" style="padding-right: 20px;"><?php the_author(); ?></p>
<p class="details2 text-center"><?php the_date(); ?></p>
</div>
<div class="flex-center space20">
<img class="social-icons" src="<?php bloginfo( 'template_directory' ); ?>/img/facebook.svg">
<img class="social-icons" src="<?php bloginfo( 'template_directory' ); ?>/img/linkedin.svg">
<img class="social-icons" src="<?php bloginfo( 'template_directory' ); ?>/img/twitter-logo.svg">
<img class="social-icons" src="<?php bloginfo( 'template_directory' ); ?>/img/ic_share.svg">
</div>
</div>
</section>
<!-- End blog title -->
<section>
<div class="blog-container space20">
<?php the_content(); ?>
</div>
</section>
<!-- Start Hire us -->
<section class="hire-us-section space40 id="scene"">
<div class="container blog-container ">
<p class="hire-us-text text-center space20">Besides writing interesting blog posts - we also implement boring and not so boring software - so if you need something, feel free to
<br><a class="hire-us-link" href="http://www.saburly.com#contact">HIRE US!</a></br></p>
<div class="hire-us-arrows">
<img class="arrow animated hire-us" src="<?php bloginfo( 'template_directory' ); ?>/img/hire-us-arrow1.svg">
<!-- <img class="arrow animated bounce" style="padding-left: 20px" src="<?php bloginfo( 'template_directory' ); ?>/img/hire-us-arrow2.svg"> -->
<!-- <img class="arrow animated bounce" style="padding-left: 20px" src="<?php bloginfo( 'template_directory' ); ?>/img/hire-us-arrow3.svg"> -->
</div>
</div>
</section>
<!-- End Hire us -->
<!-- Start You might also like -->
<section class="tabcontainer">
<div class="container">
<div class="row">
<div class="blog-intro space40">
<h2 class="sub-title text-center">You might also like...</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row space40">
<a href="Blog.html">
<div class="col-md-4 col-sm-4 col-sm-4 text-center space20">
<img src="img/blog-img-3.png" class="img-responsive center-block hidden-xs" alt="team1">
<img src="img/blog-img-3.png" class="img-responsive center-block visible-xs" alt="team1">
<h4 class="blogtitle-sm text-center">Some text or title</h4>
<p class="hint text-center">17 December</p>
<p class="hint text-center">Senad Uka</p>
</div>
</a>
<a href="Blog.html">
<div class="col-md-4 col-sm-4 col-sm-4 text-center space20">
<img src="img/blog-img-4.png" class="img-responsive center-block hidden-xs" alt="team2">
<img src="img/blog-img-4.png" class="img-responsive center-block visible-xs" alt="team1">
<h4 class="blogtitle-sm text-center">Some text or title</h4>
<p class="hint text-center">17 December</p>
<p class="hint text-center">Edin Dazdarevic</p>
</div>
</a>
<a href="Blog.html">
<div class="col-md-4 col-sm-4 col-sm-4 text-center space20">
<img src="img/blog-img-2.png" class="img-responsive center-block hidden-xs" alt="team2">
<img src="img/blog-img-2.png" class="img-responsive center-block visible-xs" alt="team1">
<h4 class="blogtitle-sm text-center">Some text or title</h4>
<p class="hint text-center">17 December</p>
<p class="hint text-center">Edin Dazdarevic</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End You might also like -->
<?php
get_footer();