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.

25 lines
1.2 KiB

  1. <li class="h-entry">
  2. <div class="author h-card p-author">
  3. <a class="photo" href="http://<?= $this->user->url ?>"><img src="<?= $this->user->photo_url ?>" class="u-photo" height="50" width="50" alt="<?= $this->user->url ?>"></a>
  4. <a class="name p-name" href="http://<?= $this->user->url ?>"><?= $this->user->name ?></a>
  5. <a class="url u-url" href="http://<?= $this->user->url ?>"><?= $this->user->url ?></a>
  6. <div style="clear:both;"></div>
  7. </div>
  8. <div class="content e-content p-name"><?= $this->entry->content ?></div>
  9. <?php if($this->entry->latitude): ?>
  10. <div class="location">
  11. <div class="p-location h-geo">
  12. <i class="fa fa-map-marker"></i>
  13. <data class="p-latitude" value="<?= $this->entry->latitude ?>"><?= $this->entry->latitude ?></data>, <data class="p-longitude" value="<?= $this->entry->longitude ?>"><?= $this->entry->longitude ?></data>
  14. </div>
  15. </div>
  16. <?php endif; ?>
  17. <div class="date">
  18. <a href="<?= entry_url($this->entry, $this->user) ?>" class="u-url"><time class="dt-published" datetime="<?= entry_date($this->entry, $this->user)->format('c') ?>"><?= entry_date($this->entry, $this->user)->format('F j, Y g:ia T') ?></time></a>
  19. </div>
  20. </li>