## Implementation Plan: Logo Navigation Destination
### Change Summary
Single attribute update in `devplacepy/templates/base.html` line 69: change `href="/feed"` to `href="/"`.
### Rationale
- Current `` navigates to the user feed; the reporter wants the splash/landing page at `/`.
- The project's topnav already has a separate "Home" link pointing to `/`, making logo → `/` consistent with site conventions.
- No CSS or JS modifications needed; no test file changes required (no existing logo tests).
### Steps
1. **Edit template**
- File: `devplacepy/templates/base.html`, line 69
- Old: `DevPlace`
- New: `DevPlace`
2. **Run project verification commands**
- Install dependencies and run unit tests:
```bash
pip install -e '.[dev]' -q && make test-unit
```
*(If PEP 668 restriction errors occur, create a virtual environment with `python3 -m venv .venv && source .venv/bin/activate` and repeat the command.)*
- Run linter:
```bash
pip install -q ruff && ruff check .
```
3. **Confirm no unintended changes**
```bash
git diff --stat
# Should show exactly: devplacepy/templates/base.html | 2 +-
# 1 file changed, 1 insertion(+), 1 deletion(-)
```
### Definition of Done
- [ ] `devplacepy/templates/base.html` line 69: `href` attribute changed from `"/feed"` to `"/"`
- [ ] `make test-unit` passes with exit code 0 (all unit tests green)
- [ ] `ruff check .` passes with exit code 0 (no linting errors)
- [ ] `git diff` shows exactly one file changed, one line modified
- [ ] Only the intended template file is altered (no CSS, JS, or test files touched)