-
Notifications
You must be signed in to change notification settings - Fork 0
/
views-news-index.php
51 lines (44 loc) · 1.81 KB
/
views-news-index.php
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
47
48
49
50
51
<div class="row">
<?php if ($news): ?>
<?php foreach ($news as $new): ?>
<article class="col-md-6">
<div class="card_blog">
<header style="background-image: url('<?php echo $new[ 'field' ][ 'image' ]['field_value']; ?>');">
</header>
<div class="card_main">
<div class="card_content">
<div class="card_date_tags">
<span class="card_date">
<i class="fa fa-calendar-alt"></i>
<?php echo strftime('%d.%B.%Y', $new[ 'date_created' ]); ?>
-
<i class="fa fa-clock"></i>
~<?php echo $new[ 'field' ][ 'reading_time' ]['field_value'] . ' ' . t('minute(s)'); ?>
</span>
</div>
<h3 class="card__title"><?php echo $new[ 'title' ]; ?></h3>
<?php echo $new[ 'field' ][ 'summary' ]['field_display']; ?>
</div>
<div class="card_footer">
<div class="card_more">
<a href="<?php echo $new[ 'link_view' ]; ?>" class="btn btn-default">
<span class="card_more_txt"><?php echo t('Learn more'); ?></span> <i class="fa fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
</article>
<?php endforeach; ?>
<div class="col-md-12">
<?php echo $paginate; ?>
</div>
<div class="col-md-12">
<a type="application/rss+xml" href="<?php echo $link_rss; ?>"><i class="fa fa-rss-square" aria-hidden="true" title="Flux RSS"></i></a>
</div>
<?php else: ?>
<div class="col-md-12">
<p><?php echo $default; ?></p>
</div>
<?php endif; ?>
</div>