chore: post name only for posts
This commit is contained in:
parent
790f7ddfff
commit
ae2d9399a3
3 changed files with 13 additions and 3 deletions
|
@ -43,6 +43,10 @@ export default {
|
|||
const normalizedPage = page.includes('.html') ? page.replace('.html', '/') : page
|
||||
return !!normalizedPage && normalizedPage.includes(category) && !/\d+/.test(normalizedPage);
|
||||
},
|
||||
isPost: (url) => {
|
||||
if (url.includes('post')) return true;
|
||||
return false
|
||||
},
|
||||
|
||||
// analytics
|
||||
getPopularPosts: (posts, analytics) => {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "10.2.3",
|
||||
"version": "10.3.3",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
{%- capture fullUrl %}{{ meta.url }}{{ page.url }}{% endcapture -%}
|
||||
{%- capture pageTitle %}{% if title %}{{ title }} • {% endif %}{{meta.siteName}}{% endcapture -%}
|
||||
{%- capture fullUrl -%}{{ meta.url }}{{ page.url }}{%- endcapture -%}
|
||||
{%- capture pageTitle -%}
|
||||
{% if page.url | isPost %}
|
||||
{{ title }}
|
||||
{% else %}
|
||||
{{ title }} • {{meta.siteName}}
|
||||
{% endif %}
|
||||
{%- endcapture -%}
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
|
Reference in a new issue