Remove middle name

This commit is contained in:
Santiago Lo Coco 2022-02-17 21:54:34 -03:00
parent 8bf960e838
commit b22a4b98f7
4 changed files with 6 additions and 7 deletions

View File

@ -4,7 +4,6 @@
title: blank title: blank
first_name: Santiago first_name: Santiago
middle_name:
last_name: Lo Coco last_name: Lo Coco
email: email:
description: description:

View File

@ -5,7 +5,7 @@
<div class="container"> <div class="container">
{% if page.title != "about" -%} {% if page.title != "about" -%}
<a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl | prepend: site.url }}/"> <a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl | prepend: site.url }}/">
{%- if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }} {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif -%} {%- if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif -%}
</a> </a>
{% endif %} {% endif %}
<button class="navbar-toggler collapsed ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler collapsed ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">

View File

@ -9,7 +9,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> <title>
{%- if site.title == "blank" -%} {%- if site.title == "blank" -%}
{%- capture title -%}{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}{%- endcapture -%} {%- capture title -%}{{ site.first_name }} {{ site.last_name }}{%- endcapture -%}
{%- else -%} {%- else -%}
{%- capture title -%}{{ site.title }}{%- endcapture -%} {%- capture title -%}{{ site.title }}{%- endcapture -%}
{%- endif -%} {%- endif -%}
@ -19,7 +19,7 @@
{{ title }} {{ title }}
{%- endif -%} {%- endif -%}
</title> </title>
<meta name="author" content="{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}" /> <meta name="author" content="{{ site.first_name }} {{ site.last_name }}" />
<meta name="description" content="{%- if page.description -%}{{ page.description }}{%- else -%}{{ site.description }}{%- endif -%}" /> <meta name="description" content="{%- if page.description -%}{{ page.description }}{%- else -%}{{ site.description }}{%- endif -%}" />
{%- if page.keywords or site.keywords %} {%- if page.keywords or site.keywords %}
<meta name="keywords" content="{%- if page.keywords -%}{{ page.keywords }}{%- else -%}{{ site.keywords }}{%- endif -%}" /> <meta name="keywords" content="{%- if page.keywords -%}{{ page.keywords }}{%- else -%}{{ site.keywords }}{%- endif -%}" />
@ -68,7 +68,7 @@
"author": "author":
{ {
"@type": "Person", "@type": "Person",
"name": "{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}" "name": "{{ site.first_name }} {{ site.last_name }}"
}, },
"url": "{{ page.url | prepend: site.baseurl | prepend: site.url }}", "url": "{{ page.url | prepend: site.baseurl | prepend: site.url }}",
"@type": "WebSite", "@type": "WebSite",
@ -77,7 +77,7 @@
{% if sameaslinks != blank -%} {% if sameaslinks != blank -%}
"sameAs": {{ sameaslinks }}, "sameAs": {{ sameaslinks }},
{%- endif %} {%- endif %}
"name": "{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}", "name": "{{ site.first_name }} {{ site.last_name }}",
"@context": "https://schema.org" "@context": "https://schema.org"
} }
</script> </script>

View File

@ -5,7 +5,7 @@ layout: default
<div class="post"> <div class="post">
<header class="post-header"> <header class="post-header">
<h1 class="post-title"> <h1 class="post-title">
{% if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }} {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif %} {% if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif %}
</h1> </h1>
<p class="desc">{{ page.subtitle }}</p> <p class="desc">{{ page.subtitle }}</p>
</header> </header>