You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
1.6 KiB

<div class="github-embed github-embed-repository <?php echo $data['logo_class'] ?>">
<p>
<a href="<?php echo esc_attr( $data['repo']->html_url ) ?>" target="_blank">
<strong>
<?php echo esc_html( $data['repo']->description ) ?>
</strong>
</a>
<br>
<a href="<?php echo esc_attr( $data['repo']->html_url ) ?>" target="_blank"><?php echo esc_html( $data['repo']->html_url ) ?></a><br>
<a href="<?php echo esc_attr( $data['repo']->html_url ) ?>/network" target="_blank"><?php echo esc_html( number_format_i18n( $data['repo']->forks_count ) ) ?></a> forks.<br>
<a href="<?php echo esc_attr( $data['repo']->html_url ) ?>/stargazers" target="_blank"><?php echo esc_html( number_format_i18n( $data['repo']->stargazers_count ) ) ?></a> stars.<br>
<a href="<?php echo esc_attr( $data['repo']->html_url ) ?>/issues" target="_blank"><?php echo esc_html( number_format_i18n( $data['repo']->open_issues_count ) ) ?></a> open issues.<br>
Recent commits:
<ul class="github_commits">
<?php
$i = 0;
foreach ( $data['commits'] as $commit ) : ?>
<li class="github_commit">
<a href="https://github.com/<?php echo $data['owner_slug'] ?>/<?php echo $data['repo_slug'] ?>/commit/<?php echo esc_attr( $commit->sha ) ?>" target="_blank"><?php echo esc_html( $commit->commit->message ) ?></a>, <?php echo esc_html( $commit->commit->committer->name ); ?>
</li>
<?php
if (++$i == 5) break;
endforeach;
?>
</ul>
</p>
</div>