diff options
author | June McEnroe <june@causal.agency> | 2020-07-09 19:21:28 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-09 19:21:28 -0400 |
commit | 87f73ddbc05b38113cb501aad4480490f6604704 (patch) | |
tree | 7629d2d6557f20daa75d38a006f643d25b19fd78 /contexts.c | |
parent | Split code and add breadcrumb nav (diff) | |
download | scooper-87f73ddbc05b38113cb501aad4480490f6604704.tar.gz scooper-87f73ddbc05b38113cb501aad4480490f6604704.zip |
Add search forms
Diffstat (limited to '')
-rw-r--r-- | contexts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contexts.c b/contexts.c index 7adfa34..c75202a 100644 --- a/contexts.c +++ b/contexts.c @@ -41,6 +41,7 @@ enum kcgi_err pageContexts(struct kreq *req) { || khtml_open(&html, req, KHTML_PRETTY) || htmlHead(&html, network) || htmlNav(&html, network, NULL) + || htmlSearch(&html, network, NULL) || khtml_elem(&html, KELEM_UL); if (error) return error; |