mirror of
https://github.com/nextcloud/nextcloud.com.git
synced 2026-01-12 15:44:37 +00:00
47 lines
1.4 KiB
PHP
Executable File
47 lines
1.4 KiB
PHP
Executable File
<?php
|
|
// Get the post user email
|
|
$user = get_post( $post_id, $output )->post_author;
|
|
$useremail = get_userdata($user)->user_email;
|
|
// Check if icon has been uploaded
|
|
$icon = get_feed_meta( 'iconpath' );
|
|
if( !is_null( $icon ) && file_exists( $icon ) ){
|
|
$imgurl = home_url( '/' ) . $icon;
|
|
} else {
|
|
// Try gravatar
|
|
// Specified email?
|
|
$gravmail = get_feed_meta('email');
|
|
// Try specified email, else default to blog email, else show default image
|
|
$imgurl = get_gravatar( $useremail, '60' );//get_gravatar( $gravmail, '60', get_gravatar( $useremail, '60' ) );
|
|
//echo $imgurl;
|
|
}
|
|
// Compute link
|
|
$target = is_syndicated() ? ' target="_blank"': '';
|
|
$link = is_syndicated() ? get_syndication_permalink() : get_permalink();
|
|
$title = is_syndicated() ? get_syndication_source() : get_the_title();
|
|
?>
|
|
<div class="row news">
|
|
<div class="span1">
|
|
<a href="#"><img class="thumbnail" src="<?php echo $imgurl; ?>" alt="<?php echo $title; ?>"></a>
|
|
</div>
|
|
<div class="span11 post-header post-header-indent">
|
|
<a href="<?php echo $link; ?>"<?php echo $target; ?>><h2><?php the_title(); ?></h2></a>
|
|
<div class="post-info">
|
|
<small>Posted on
|
|
<?php the_date(); ?> by <?php the_author(); ?>
|
|
<?php if( is_syndicated() ){
|
|
echo 'from "'.get_syndication_source().'"';
|
|
}
|
|
?>
|
|
</small>
|
|
<?php echo get_the_tags_html($post->ID); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="span11 post post-indent">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
|