New functionality to change feed dates to relative dates (e.g. 1 day ago) where the feed items are available on page load. Contributes to #50.

This commit is contained in:
Jason Williams
2020-10-31 18:13:53 -07:00
parent 623d54f307
commit 8eab9fe605
4 changed files with 48 additions and 26 deletions

View File

@@ -20,8 +20,7 @@ function onStart()
else $this['channelfilter'] = explode(',', $this->param('channel'));
$this->addJs('https://cdnjs.cloudflare.com/ajax/libs/jqcloud/1.0.3/jqcloud.min.js');
$this->addJs('assets/javascript/feedlayout.js');
//$this->addCss('https://cdnjs.cloudflare.com/ajax/libs/jqcloud/1.0.3/jqcloud.min.css');
$this->addJs('assets/javascript/feed.js');
}
?>
==

View File

@@ -8,25 +8,25 @@ maxItems = 5
renderPartial = "feed/template"
==
<?php
function onStart()
{
$this->addJs('assets/javascript/feedlayout.js');
function onStart()
{
$this->addJs('assets/javascript/feed.js');
}
?>
==
<div class="row">
<div class="col-lg-5 order-lg-2">
<h1>Welcome</h1>
<p>Welcome to Ja.son-Williams.ca, the little home on the web of perhaps unsurprisingly Jason Williams.</p>
<p>Jay is a human male originally from <a href="https://en.wikipedia.org/wiki/Swansea">Swansea, UK</a> but last spotted in <a href="https://en.wikipedia.org/wiki/Calgary">Calgary, Canada</a>. By day he's a mild-mannered bank employee and by night he's... uh... asleep, mostly.</p>
<p>He doesn't keep very much stuff here, but to browse around please make a selection from the menu at the top right of the page.</p>
<h2>Available Everywhere</h2>
{% partial 'social' %}
</div>
<div class="col-lg-7 order-lg-1">
<h1>Feed</h1>
{% partial 'feed/placeholder' feeditemclass='col-sm-12 col-md-6' %}
<a class="btn btn-outline-primary d-none show-onfeedloaded" href="/feed" role="button">View More...</a>
</div>
<div class="row">
<div class="col-lg-5 order-lg-2">
<h1>Welcome</h1>
<p>Welcome to Ja.son-Williams.ca, the little home on the web of perhaps unsurprisingly Jason Williams.</p>
<p>Jay is a human male originally from <a href="https://en.wikipedia.org/wiki/Swansea">Swansea, UK</a> but last spotted in <a href="https://en.wikipedia.org/wiki/Calgary">Calgary, Canada</a>. By day he's a mild-mannered bank employee and by night he's... uh... asleep, mostly.</p>
<p>He doesn't keep very much stuff here, but to browse around please make a selection from the menu at the top right of the page.</p>
<h2>Available Everywhere</h2>
{% partial 'social' %}
</div>
<div class="col-lg-7 order-lg-1">
<h1>Feed</h1>
{% partial 'feed/placeholder' feeditemclass='col-sm-12 col-md-6' %}
<a class="btn btn-outline-primary d-none show-onfeedloaded" href="/feed" role="button">View More...</a>
</div>
</div>