diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-11-02 12:43:34 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-11-02 12:45:11 -0400 |
| commit | 0a1e063e8c06fd852187e8f1ba7c643f355a7499 (patch) | |
| tree | 86c07eea7825f58b03d235822a8d397f945ab2ae | |
| parent | 8b2200a15002a0deba68c629be4eb96017020fce (diff) | |
| download | xesite-0a1e063e8c06fd852187e8f1ba7c643f355a7499.tar.xz xesite-0a1e063e8c06fd852187e8f1ba7c643f355a7499.zip | |
lume/src/{blog,talks}: remove pagefind for right now
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | lume/src/blog.jsx | 4 | ||||
| -rw-r--r-- | lume/src/talks.jsx | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lume/src/blog.jsx b/lume/src/blog.jsx index 014cb19..9fdd325 100644 --- a/lume/src/blog.jsx +++ b/lume/src/blog.jsx @@ -14,10 +14,6 @@ export default ({ search }) => { <a href="/blog.json">JSONFeed</a>. </p> - <div class="bg-bg-1 dark:bg-bg-1 rounded-xl m-2 px-2 py-1 shadow-md max-w-xl"> - <div className=" my-4" id="search"></div> - </div> - <ul class="list-disc ml-4 mb-4"> {search.pages("type=blog", "order date=desc").map((post) => { const url = post.data.redirect_to ? post.data.redirect_to : post.data.url; diff --git a/lume/src/talks.jsx b/lume/src/talks.jsx index a9af7aa..b8e0950 100644 --- a/lume/src/talks.jsx +++ b/lume/src/talks.jsx @@ -8,10 +8,6 @@ export default ({ search }) => { <> <h1 className="text-3xl mb-4">{title}</h1> - <div class="bg-bg-1 dark:bg-bg-1 rounded-xl m-2 px-2 py-1 shadow-md max-w-xl"> - <div className=" my-4" id="search"></div> - </div> - <ul class="list-disc ml-4 mb-4"> {search.pages("layout=talk.njk", "order date=desc").map((post) => ( <li> |
