diff --git a/package-lock.json b/package-lock.json index 28a9d7f1..c590b2f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "22.3.5", + "version": "22.3.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "22.3.5", + "version": "22.3.6", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 6df1ddbc..635ec142 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "22.3.5", + "version": "22.3.6", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/includes/base.liquid b/src/includes/base.liquid index d896ac35..35c078de 100644 --- a/src/includes/base.liquid +++ b/src/includes/base.liquid @@ -32,15 +32,15 @@ {%- if schema == 'blog' -%} {%- assign pageDescription = post.description | markdown | strip_html -%} {%- elsif artist.description -%} - {%- assign pageDescription = artist.description | truncate: 300 -%} + {%- assign pageDescription = artist.description | truncatewords: 50 -%} {%- elsif book.description -%} - {%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncate: 300 -%} + {%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncatewords: 50 -%} {%- elsif movie.description -%} - {%- assign pageDescription = movie.review | markdown | strip_html | default: movie.description | truncate: 300 -%} + {%- assign pageDescription = movie.review | markdown | strip_html | default: movie.description | truncatewords: 50 -%} {%- elsif show.description -%} - {%- assign pageDescription = show.review | markdown | strip_html | default: show.description | truncate: 300 -%} + {%- assign pageDescription = show.review | markdown | strip_html | default: show.description | truncatewords: 50 -%} {%- elsif genre.description -%} - {%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%} + {%- assign pageDescription = genre.description | markdown | strip_html | truncatewords: 50 -%} {%- elsif page.description -%} {%- assign pageDescription = page.description -%} {%- elsif description -%} diff --git a/src/includes/partials/home/posts.liquid b/src/includes/partials/home/posts.liquid index ad237e2b..a8c38ee4 100644 --- a/src/includes/partials/home/posts.liquid +++ b/src/includes/partials/home/posts.liquid @@ -19,7 +19,7 @@ - {{ post.description | markdown | truncate: 300 }} + {{ post.description | normalize_whitespace | markdown | truncatewords: 50 }} {%- endfor -%} {%- if postType != 'featured' -%} diff --git a/src/pages/dynamic/blogroll.html b/src/pages/dynamic/blogroll.html index 78f503e8..a5148eec 100644 --- a/src/pages/dynamic/blogroll.html +++ b/src/pages/dynamic/blogroll.html @@ -5,7 +5,7 @@ permalink: /blogroll.html description: These are awesome blogs that I enjoy and you may enjoy too. ---

{{ title }}

-

You can Download OPML +

You can Download OPML download an OPML file containing all of these feeds and import them into your RSS reader.

diff --git a/src/pages/dynamic/books/index.html b/src/pages/dynamic/books/index.html index ab13ff3b..7d0d58d9 100644 --- a/src/pages/dynamic/books/index.html +++ b/src/pages/dynamic/books/index.html @@ -47,7 +47,7 @@ schema: books {%- assign percentage = book.progress | append: '%' -%} {% render "partials/media/progress-bar.liquid", percentage:percentage %} {% endif %} - {% if book.description %}
{{ book.description | markdown | truncate: 300 }}
{% endif %} + {% if book.description %}
{{ book.description | normalize_whitespace | markdown | truncatewords: 50 }}
{% endif %} {% endfor %} \ No newline at end of file