mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
![]() # Context: USER: add an if statement, so the home page always has <h1>aider</h1> and <h2>aider is GPT-4 powered coding in your terminal</h2> ASSISTANT: ```html _layouts/default.html <<<<<<< ORIGINAL <h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1> <h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2> ======= {% if page.url == site.baseurl %} <h1 class="project-name">aider</h1> <h2 class="project-tagline">aider is GPT-4 powered coding in your terminal</h2> {% else %} <h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1> <h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2> {% endif %} >>>>>>> UPDATED ``` |
||
---|---|---|
.. | ||
default.html |