{%- assign fullUrl = meta.url | append: page.url -%} {%- assign pageTitle = meta.siteName -%} {%- if schema == 'blog' -%} {%- assign pageTitle = post.title -%} {%- elsif title -%} {%- assign pageTitle = title | append: ' • ' | append: meta.siteName -%} {%- elsif artist.name_string -%} {%- assign pageTitle = 'Artists • ' | append: artist.name_string | append: ' • ' | append: meta.siteName -%} {%- elsif schema == 'music-index' -%} {%- assign pageTitle = 'Music • ' | append: meta.siteName -%} {%- elsif genre.name -%} {%- assign pageTitle = 'Music • ' | append: genre.name | append: ' • ' | append: meta.siteName -%} {%- elsif book.title -%} {%- assign pageTitle = 'Books • ' | append: book.title | append: ' • ' | append: meta.siteName -%} {%- elsif 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 -%} {%- elsif show.title -%} {%- assign pageTitle = 'Shows • ' | append: show.title | append: ' • ' | append: meta.siteName -%} {%- endif -%} {%- assign pageDescription = meta.siteDescription -%} {%- if schema == 'blog' -%} {%- assign pageDescription = post.description | markdown | strip_html -%} {%- elsif artist.description -%} {%- assign pageDescription = artist.description | truncate: 300 -%} {%- elsif book.description -%} {%- assign pageDescription = book.description -%} {%- elsif movie.description -%} {%- assign pageDescription = movie.review | default: movie.description | truncate: 300 -%} {%- elsif show.description -%} {%- assign pageDescription = show.review | default: show.description | truncate: 300 -%} {%- elsif genre.description -%} {%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%} {%- elsif description -%} {%- assign pageDescription = description -%} {%- endif -%} {%- assign ogImage = meta.meta_data.opengraph_default -%} {%- case schema -%} {%- when 'music' -%} {%- assign ogImage = music.recent.artists[0].image -%} {%- when 'music-index' -%} {%- assign ogImage = music.recent.artists[0].image -%} {%- when 'artist' -%} {%- assign ogImage = artist.image -%} {%- when 'genre' -%} {%- assign sortedGenreArtists = genre.artists | sortByPlaysDescending: "total_plays" -%} {%- assign ogImage = sortedGenreArtists[0].image -%} {%- when 'watching' -%} {%- assign featuredMovie = movies.recentlyWatched | first -%} {%- assign ogImage = featuredMovie.backdrop -%} {%- when 'books' -%} {%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%} {%- assign ogImage = featuredBook.image -%} {%- when 'book' -%} {%- assign ogImage = book.image -%} {%- when 'movie' -%} {%- assign ogImage = movie.backdrop -%} {%- when 'show' -%} {%- assign ogImage = 'https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%} {%- when 'genre' -%} {%- assign genreArtist = genre.artists | shuffleArray | first -%} {%- assign ogImage = genreArtist.image -%} {%- endcase -%} {{ pageTitle }} {{ content }}