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.
16 lines
449 B
16 lines
449 B
2 years ago
|
<?php
|
||
|
/**
|
||
|
* Template for displaying books in network catalog
|
||
|
*
|
||
|
* @package Aldine
|
||
|
*/
|
||
|
|
||
|
use function \Aldine\Helpers\maybe_truncate_string;
|
||
|
?>
|
||
|
<div class="featured_book">
|
||
|
<div class="featured_book__cover" style="background-image: url('<?php echo $book['metadata']['image']; ?>' );"></div>
|
||
|
<p class="featured_book__title">
|
||
|
<a href="<?php echo $book['link']; ?>"><?php echo maybe_truncate_string( $book['metadata']['name'] ); ?></a>
|
||
|
</p>
|
||
|
</div>
|