Commit graph

6 commits

Author SHA1 Message Date
Paul Gauthier
b424309056 wip: Changed home and examples links to use site baseurl. 2023-05-15 13:39:48 -07:00
Paul Gauthier
8a5c5242d8 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.
2023-05-15 09:49:41 -07:00
Paul Gauthier
e75f8a4367 aider: Added screenshot.png as the meta:image for Open Graph and Twitter cards.
# Context:
USER: add screenshot.png as the meta:image
ASSISTANT: To add the screenshot.png as the meta:image, we need to modify the _layouts/default.html file.

```html
_layouts/default.html
<<<<<<< ORIGINAL
{% seo %}
=======
{% seo title=false %}
<meta property="og:image" content="{{ site.baseurl }}/screenshot.png">
<meta property="twitter:image" content="{{ site.baseurl }}/screenshot.png">
>>>>>>> UPDATED
```

This change will add the screenshot.png as the meta:image for Open Graph and Twitter cards.
2023-05-15 09:48:50 -07:00
paul-gauthier
14984487dc
Update default.html 2023-05-15 06:49:45 -07:00
Paul Gauthier
5ad7253e2a fixed urls 2023-05-14 21:09:59 -07:00
Paul Gauthier
5f99edd4d6 initial 2023-05-14 21:08:30 -07:00