From 263988a27cde393a3ef0473f9a8ed57f96c1d0dc Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 16 May 2023 06:29:28 -0700 Subject: [PATCH] aider: Added if statement to always display "aider" and "aider is GPT-4 powered coding in your terminal" on home page. # Context: USER: add an if statement, so the home page always has

aider

and

aider is GPT-4 powered coding in your terminal

ASSISTANT: ```html _layouts/default.html <<<<<<< ORIGINAL

{{ page.title | default: site.title | default: site.github.repository_name }}

{{ page.description | default: site.description | default: site.github.project_tagline }}

======= {% if page.url == site.baseurl %}

aider

aider is GPT-4 powered coding in your terminal

{% else %}

{{ page.title | default: site.title | default: site.github.repository_name }}

{{ page.description | default: site.description | default: site.github.project_tagline }}

{% endif %} >>>>>>> UPDATED ``` --- _layouts/default.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_layouts/default.html b/_layouts/default.html index 2740cab45..d4bf9a8ed 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -18,8 +18,13 @@ Skip to the content.