| Server IP : 217.160.0.15 / Your IP : 216.73.217.116 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/app395378437/wp-content/themes/alum/ |
Upload File : |
<?php
/**
* The Template for displaying all single posts.
*
*/
get_header();
?>
<div class="smallhead">
</div>
<div class="page-intro" style="margin-top: 0px;">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 ">
<ol class="breadcrumb ">
<?php alum_breadcrumbs(); ?>
</ol>
</div>
</div>
</div>
</div>
<!--Start Content Grid-->
<div class="mainblogwrapper clearfix">
<div class="container">
<div class="row">
<div class="mainblogcontent">
<div class="col-md-9">
<!-- *** Post loop starts *** -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="article-page">
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
<div class="blogdetails">
<h3 class="article-page-head"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<ul class="meta">
<li><i class="fa fa-clock-o blogin-color"></i> <?php
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
?>
<a href="<?php
echo get_day_link($archive_year,
$archive_month,
$archive_day);
?>"><?php echo get_the_time('m, d, Y') ?></a></li>
<li><i class="fa fa-user blogin-color"></i> <?php the_author_posts_link(); ?></li>
<li><i class="fa fa-folder-open blogin-color"></i> <?php the_category(', '); ?></li>
<li class="comments"><i class="fa fa-comment blogin-color"></i> <?php comments_popup_link( __( 'No Comments.', 'alum' ),
__( 'Comment: 1', 'alum' ),
__( 'Comments: %', 'alum' )); ?></li>
</ul>
<div class="blog-border"></div>
<div class="blog-content"> <?php the_content(); ?> </div>
</div> </div>
</div>
<?php
endwhile;
else:
?>
<div>
<p>
<?php _e('Sorry no post matched your criteria',
'alum'); ?>
</p>
</div>
<?php endif; ?>
<!-- *** Post loop ends*** -->
<div class="clearfix"></div>
<!-- ***Comment Template *** -->
<?php comments_template(); ?>
<!-- ***Comment Template *** -->
</div>
<div class="col-md-3">
<!-- *** Sidebar Starts *** -->
<?php get_sidebar(); ?>
<!-- *** Sidebar Ends *** -->
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>