mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
aider: Added a trailing slash to site.baseurl in if statement.
# Context: USER: in the if page.url == site.baseurl, add a trailing slash to site.baseurl ASSISTANT: ```html _layouts/default.html <<<<<<< ORIGINAL {% if page.url == site.baseurl %} ======= {% if page.url == site.baseurl | append: '/' %} >>>>>>> UPDATED ```
This commit is contained in:
parent
a716d3fb6f
commit
72b7721fbd
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
<a id="skip-to-content" href="#content">Skip to the content.</a>
|
<a id="skip-to-content" href="#content">Skip to the content.</a>
|
||||||
|
|
||||||
<header class="page-header" role="banner">
|
<header class="page-header" role="banner">
|
||||||
{% if page.url == site.baseurl %}
|
{% if page.url == site.baseurl | append: '/' %}
|
||||||
<h1 class="project-name">aider</h1>
|
<h1 class="project-name">aider</h1>
|
||||||
<h2 class="project-tagline">aider is GPT-4 powered coding in your terminal</h2>
|
<h2 class="project-tagline">aider is GPT-4 powered coding in your terminal</h2>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue