aboutsummaryrefslogtreecommitdiff
path: root/journal/index.org
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2024-01-25 16:46:22 -0800
committerPreston Pan <preston@nullring.xyz>2024-01-25 16:46:22 -0800
commit9d15d37bed3f2d96017ffa373b0d52df26f7903a (patch)
tree187f37027dc21e736396f6bb19b990b5d3a64bc3 /journal/index.org
parenta7da57c0736bec58d1fc4ec99d211099c31bb45f (diff)
add code block in website
Diffstat (limited to 'journal/index.org')
-rw-r--r--journal/index.org6
1 files changed, 5 insertions, 1 deletions
diff --git a/journal/index.org b/journal/index.org
index 290f751..5322bb3 100644
--- a/journal/index.org
+++ b/journal/index.org
@@ -19,8 +19,10 @@ there will be some). I will also be posting some TODOs that I have
throughout time.
** Entries
-Here is a list of all my journal entries:
+@@html: <div class="links-page">@@
+If you're interested, here is a list of all my journal entries:
#+begin_src shell :results output raw :exports both
+#printf "@@html: <div class=\"links\">@@\n"
for f in $(ls | sort -r);
do
if [[ "$f" == "index.org" || "$f" == "README.org" ]]; then
@@ -28,6 +30,7 @@ do
fi
printf -- "- [[file:$f][$f]]\n"
done
+#printf "@@html: </div>@@\n"
#+end_src
#+RESULTS:
@@ -58,3 +61,4 @@ done
- [[file:20230611.org][20230611.org]]
- [[file:20230610.org][20230610.org]]
- [[file:20230609.org][20230609.org]]
+@@html: </div>@@