mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
aider: Removed title=false
attribute from {% seo %}
tag.
# Context: USER: why did you add title=false ASSISTANT: I apologize for the confusion. I added `title=false` to prevent the default title from being generated by the `jekyll-seo-tag` plugin. However, if you want to keep the default title, I can remove the `title=false` attribute. Here's the updated change: ```html _layouts/default.html <<<<<<< ORIGINAL {% seo title=false %} <meta property="og:image" content="{{ site.baseurl }}/screenshot.png"> <meta property="twitter:image" content="{{ site.baseurl }}/screenshot.png"> ======= {% seo %} <meta property="og:image" content="{{ site.baseurl }}/screenshot.png"> <meta property="twitter:image" content="{{ site.baseurl }}/screenshot.png"> >>>>>>> UPDATED ``` This change will keep the default title and still add the screenshot.png as the meta:image for Open Graph and Twitter cards.
This commit is contained in:
parent
e75f8a4367
commit
8a5c5242d8
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
|
||||
{% seo title=false %}
|
||||
{% seo %}
|
||||
<meta property="og:image" content="{{ site.baseurl }}/screenshot.png">
|
||||
<meta property="twitter:image" content="{{ site.baseurl }}/screenshot.png">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue