diff options
-rw-r--r-- | blog/index.org | 2 | ||||
-rw-r--r-- | index.org | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/blog/index.org b/blog/index.org index 5723c3e..168e664 100644 --- a/blog/index.org +++ b/blog/index.org @@ -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" @@ -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 |