diff options
author | June McEnroe <june@causal.agency> | 2020-07-10 10:22:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-10 10:22:54 -0400 |
commit | 046ec8d7e528dbef753e7b19ab4b38756c81cdca (patch) | |
tree | 04ed66c6e16d01f7bfa5f3f2deaebeff7871de03 /contexts.c | |
parent | Serve stylesheet separately, with caching (diff) | |
download | scooper-046ec8d7e528dbef753e7b19ab4b38756c81cdca.tar.gz scooper-046ec8d7e528dbef753e7b19ab4b38756c81cdca.zip |
Fold search form into nav
CSS is kind of almost working for me here. I await its inevitable betrayal.
Diffstat (limited to '')
-rw-r--r-- | contexts.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contexts.c b/contexts.c index bf5811f..b81c515 100644 --- a/contexts.c +++ b/contexts.c @@ -57,8 +57,7 @@ enum kcgi_err pageContexts(struct kreq *req) { || khttp_body(req) || khtml_open(&html, req, KHTML_PRETTY) || htmlHead(&html, network) - || htmlNav(&html, network, NULL) - || htmlSearch(&html, network, NULL); + || htmlNav(&html, network, NULL); if (error) return error; dbBindText(stmt.contexts, ":network", network); |