]> Untitled Git - monorepo.git/commitdiff
fix blog page
authorPreston Pan <preston@nullring.xyz>
Sat, 27 Jan 2024 02:32:12 +0000 (18:32 -0800)
committerPreston Pan <preston@nullring.xyz>
Sat, 27 Jan 2024 02:32:12 +0000 (18:32 -0800)
blog/index.org
index.org

index 5723c3e6d26d8fa0d54ca03764c91d2cf1eb3d42..168e6646f22c44b696b0e74fbd4d0c340b755737 100644 (file)
@@ -20,7 +20,7 @@ Blog Articles:
 #+begin_src shell :results output raw :exports both
 for f in *;
 do
-    if [[ "$f" == "index.org" ]]; then
+    if [[ "$f" == "index.org" || "$f" == "img" ]]; then
         continue
     fi
     printf -- "- [[file:$f][$f]]\n"
index b344335928ea00adda8555b711c1dbe9c2ccfd36..8f9c21d72d7e20e35a52b954c852afaa05fffcc0 100644 (file)
--- a/index.org
+++ b/index.org
@@ -64,7 +64,7 @@ website:
 #+begin_src shell :exports code :results silent
 cd ~/org/website
 git add .
-git commit -m "more media queries"
+git commit -m "fix blog page"
 git push github main
 rsync -azvP ~/website_html/ root@nullring.xyz:/var/www/ret2pop/
 #+end_src