fix(*): corrects a number of html validation issues
This commit is contained in:
parent
81e738621c
commit
8d9455940e
5 changed files with 5 additions and 6 deletions
|
@ -22,6 +22,5 @@ const fetchTopTags = async () => {
|
|||
};
|
||||
|
||||
export default async function () {
|
||||
console.log(await fetchTopTags())
|
||||
return await fetchTopTags();
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
<p><mark>{{ label }}</mark>{%- for tag in tags %} <a href="/tags/{{ tag.tag }}">#{{ tag.tag }}</a>{%- endfor -%}</p>
|
||||
<p><mark>{{ label }}</mark>{%- for tag in tags %} <a href="/tags/{{ tag.tag | url_encode }}">#{{ tag.tag }}</a>{%- endfor -%}</p>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<span class="subheader">{{ item.chart.subtext }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<time datetime="{{ item.chart.played_at }}">
|
||||
<time datetime="{{ item.chart.played_at | date: "%Y-%m-%dT%H:%M:%S%:z", "America/Los_Angeles" }}">
|
||||
{{ item.chart.played_at | date:"%B %-d, %-I:%M%p", "America/Los_Angeles" }}
|
||||
</time>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue