21 lines
556 B
PHP
21 lines
556 B
PHP
|
|
<li>
|
||
|
|
|
||
|
|
<?php //get_template_part("template-parts/micro/post"); ?>
|
||
|
|
|
||
|
|
<time datetime="<?= get_the_date("d.m.Y H:i:s") ?>" class="news__time">
|
||
|
|
|
||
|
|
<?= get_the_date("H:i") ?>
|
||
|
|
|
||
|
|
</time>
|
||
|
|
|
||
|
|
<a class="news__name <?= get_post_meta( get_the_ID(), "_breaking", true ) == 1 ? "active" : "" ?>" href="<?= the_permalink() ?>" title="<?= htmlspecialchars( get_the_title() ) ?>">
|
||
|
|
|
||
|
|
<?= the_title() ?>
|
||
|
|
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<?php //get_template_part("template-parts/micro/author"); ?>
|
||
|
|
|
||
|
|
<?php //get_template_part("template-parts/micro/image"); ?>
|
||
|
|
|
||
|
|
</li>
|