Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f23fcf798059269e32b9f15c4770950ba7f477e (plain)
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
43
44
45
46
<?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 />