mirror of
https://github.com/sorenpeter/timeline.git
synced 2025-12-15 10:57:01 +00:00
44 lines
No EOL
1.9 KiB
PHP
44 lines
No EOL
1.9 KiB
PHP
<!-- <center>
|
|
<?php if (!empty($_GET['twts'])) { ?>
|
|
<em>Twts for <a href="<?= $twtsURL ?>"><?= $twtsURL ?></a></em>
|
|
<?php } else { ?>
|
|
<em>Timeline for <a href="<?= $url ?>"><?= $url ?></a></em>
|
|
<?php } ?>
|
|
</center> -->
|
|
|
|
<?php foreach ($twts as $twt) { ?>
|
|
<article class="post-entry">
|
|
<a href="?twts=<?= $twt->mainURL ?>">
|
|
<img src='<?= $twt->avatar ?>' class="avatar" onerror="this.onerror=null;this.src='imgs/image_not_found.png';">
|
|
</a>
|
|
<div>
|
|
<a href="?twts=<?= $twt->mainURL ?>" class="author">
|
|
<strong><?= $twt->nick ?></strong>@<?= parse_url($twt->mainURL, PHP_URL_HOST); ?>
|
|
</a>
|
|
|
|
<div class="twt-msg">
|
|
<?= $twt->content ?>
|
|
|
|
<!-- Not sure what this does...
|
|
<?php foreach ($twt->mentions as $mention) { ?>
|
|
<br><?= $mention['nick'] ?>(<?= $mention['url'] ?>)
|
|
<?php } ?>
|
|
-->
|
|
</div>
|
|
|
|
<small>
|
|
<?php if($twt->replyToHash) { ?>
|
|
<!-- <a href="?hash=<?= $twt->replyToHash?>">Conversation</a> | -->
|
|
<a href="/conv/<?= $twt->replyToHash?>">Conversation: #<?= $twt->replyToHash?></a> |
|
|
<?php } ?>
|
|
<!-- TODO: make depending on session or nor -->
|
|
<a href="new_twt.php?hash=<?= $twt->hash ?>">Reply</a>
|
|
(<a href="new_twt.php?hash=<?= $twt->hash ?>">via email</a>) <!-- TODO: mailto-link -->
|
|
<!-- <a href='/?hash=<?= $twt->hash ?>' class="right"><span title="<?= $twt->fullDate ?> "><?= $twt->displayDate ?></span></a> -->
|
|
<a href='/post/<?= $twt->hash ?>' class="right"><span title="<?= $twt->fullDate ?> "><?= $twt->displayDate ?></span></a>
|
|
|
|
</small>
|
|
</div>
|
|
</article>
|
|
|
|
<?php } ?>
|