parent
930cc60175
commit
f03cee9c5a
32 changed files with 47 additions and 47 deletions
|
@ -4,23 +4,23 @@
|
|||
{%- if schema == 'blog' -%}
|
||||
{%- assign pageTitle = post.title -%}
|
||||
{%- elsif title -%}
|
||||
{%- assign pageTitle = title | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = title | append: ' / ' | append: meta.siteName -%}
|
||||
{%- elsif artist.name_string -%}
|
||||
{%- assign pageTitle = 'Artists · ' | append: artist.name_string | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = 'Artists / ' | append: artist.name_string | append: ' / ' | append: meta.siteName -%}
|
||||
{%- elsif schema == 'music-index' -%}
|
||||
{%- assign pageTitle = 'Music · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = 'Music / ' | append: meta.siteName -%}
|
||||
{%- elsif genre.name -%}
|
||||
{%- assign pageTitle = 'Music · ' | append: genre.name | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = 'Music / ' | append: genre.name | append: ' / ' | append: meta.siteName -%}
|
||||
{%- elsif book.title -%}
|
||||
{%- assign pageTitle = 'Books · ' | append: book.title | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = 'Books / ' | append: book.title | append: ' / ' | append: meta.siteName -%}
|
||||
{%- elsif movie.title -%}
|
||||
{%- assign pageTitle = 'Movies · ' | append: movie.title -%}
|
||||
{%- assign pageTitle = 'Movies / ' | append: movie.title -%}
|
||||
{%- if movie.rating -%}
|
||||
{%- assign pageTitle = pageTitle | append: ' (' | append: movie.rating | append: ')' -%}
|
||||
{%- endif -%}
|
||||
{%- assign pageTitle = pageTitle | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = pageTitle | append: ' / ' | append: meta.siteName -%}
|
||||
{%- elsif show.title -%}
|
||||
{%- assign pageTitle = 'Shows · ' | append: show.title | append: ' · ' | append: meta.siteName -%}
|
||||
{%- assign pageTitle = 'Shows / ' | append: show.title | append: ' / ' | append: meta.siteName -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- assign pageDescription = meta.siteDescription -%}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<nav aria-label="Secondary site navigation" class="sub-pages flex-centered justify-centered text-centered">
|
||||
{% for link in nav.footer %}
|
||||
{% render "partials/nav/link.liquid", page:page, link:link.name, icon:link.icon %}
|
||||
{% if not forloop.last %}<span>·</span>{% endif %}
|
||||
{% if not forloop.last %}<span>•</span>{% endif %}
|
||||
{% endfor %}
|
||||
</nav>
|
||||
</footer>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div class="title">
|
||||
<a href="{{ item.url }}">{{ item.title }}</a>
|
||||
</div>
|
||||
<div class="subtext">{{ item.artist }} · {{ item.plays }} plays</div>
|
||||
<div class="subtext">{{ item.artist }} • {{ item.plays }} plays</div>
|
||||
</div>
|
||||
</div>
|
||||
{% render "partials/media/progress-bar.liquid", percentage:percentage %}
|
||||
|
|
Reference in a new issue