diff options
| author | Xe Iaso <me@xeiaso.net> | 2024-04-29 19:53:39 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2024-04-29 20:05:51 -0400 |
| commit | 2310b445212ec236dc970e40c55e73324dd37fb6 (patch) | |
| tree | 5176ee5ecfbad126d560fe64edfb568f90cf0cdd | |
| parent | 1082d0335f8475b46378b03c56fa5663dc262dc4 (diff) | |
| download | xesite-2310b445212ec236dc970e40c55e73324dd37fb6.tar.xz xesite-2310b445212ec236dc970e40c55e73324dd37fb6.zip | |
index: show all indexed posts
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | lume/src/index.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lume/src/index.jsx b/lume/src/index.jsx index 48ad41c..006a7ba 100644 --- a/lume/src/index.jsx +++ b/lume/src/index.jsx @@ -26,7 +26,7 @@ export default ({ search, resume, notableProjects, contactLinks }, { date }) => <h2 class="text-2xl mb-4">Recent Articles</h2> <ul class="list-disc ml-4 mb-4"> - {search.pages("type=blog", "order date=desc", 5).map((post) => { + {search.pages("index=true", "order date=desc", 5).map((post) => { const url = post.redirect_to ? post.redirect_to : post.url; return ( <li> |
