Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aider: Update
<title>
tag in templates/base.html
to dynamically r…
…eflect the page title from front matter. # Aider chat conversation: USER: <title> is still freenet.org on FAQ page ASSISTANT: To ensure the `<title>` tag dynamically reflects the page title, we need to update the `templates/base.html` file to use the `title` variable from the front matter of each page. Here are the necessary changes: templates/base.html ```python <<<<<<< SEARCH <title>{% block title %}freenet.org{% endblock %}</title> ======= <title>{% block title %}{{ title }}{% endblock %}</title> >>>>>>> REPLACE ``` This change will ensure that the `<title>` tag dynamically reflects the title specified in the front matter of each page, including the FAQ page.
- Loading branch information