add Search suffix to the search page titles

This commit is contained in:
yggverse 2025-08-11 17:12:41 +03:00
parent 97ac3d9dce
commit a0a5610f9b

View file

@ -56,6 +56,8 @@ fn index(
let mut t = String::new(); let mut t = String::new();
if let Some(q) = search && !q.is_empty() { if let Some(q) = search && !q.is_empty() {
t.push_str(q); t.push_str(q);
t.push_str(S);
t.push_str("Search");
t.push_str(S) t.push_str(S)
} }
if let Some(p) = page && p > 1 { if let Some(p) = page && p > 1 {