Yes, thank you very much mr Kauler. I'd just updated my blog, so it should be visible which is the current state of the app. Just for your enjoyment I left some screenshots of the new things:
Splitting to older posts
https://i.ibb.co/jhsL3tF/shellcms-b1.png
Using Bulmacss controls and styles ...
Search found 6 matches
- Fri Nov 29, 2024 1:17 pm
- Forum: EasyOS
- Topic: shellcms derivate with bulma css
- Replies: 2
- Views: 164
- Thu Nov 28, 2024 11:57 pm
- Forum: EasyOS
- Topic: shellcms derivate with bulma css
- Replies: 2
- Views: 164
shellcms derivate with bulma css
I believe this is my first post here, but in the past, I received permission from BarryK to fork shellCMS and create my own version. I went ahead and did that but forgot to share it with everyone (my bad). So here it is the repository: shellcms_bulma .
I’ve used it to create a personal blog , and ...
I’ve used it to create a personal blog , and ...
- Sun Apr 23, 2023 1:37 pm
- Forum: EasyOS
- Topic: Using ShellCMS
- Replies: 7
- Views: 729
Re: Using ShellCMS
shellcms line 111:
#hmmm, do not allow ./cms_config/config to override...
EDITOR0="$EDITOR"
and then line 1628 overwrites the setting loaded from the config file:
EDITOR="$EDITOR0" #20211201
Maybe ask the author why this is needed. With the latter line commented out, the editor setting from ...
- Sun Apr 23, 2023 1:20 am
- Forum: EasyOS
- Topic: Using ShellCMS
- Replies: 7
- Views: 729
Re: Using ShellCMS
Well I have edited the shellCMS bash and now in the case for some reason to have more default options for editing the post and supporting "editor with switches" syntax e.g geany -i . The last one is set to vi . Yet not sure why shellCMS on my ubuntu installation won't read the EDITOR variable from ...
- Fri Apr 21, 2023 2:07 pm
- Forum: EasyOS
- Topic: Using ShellCMS
- Replies: 7
- Views: 729
Re: Using ShellCMS
Thanks for the answer the key was here
It should be just geany without -i option (or use a wrapper script that includes the option).
In the shellcms code I've found this
if [ -x ${PWD0}/${EDITOR} ];then #ex: mozeditor
EDITOREXE="${PWD0}/${EDITOR}"
else
if which $EDITOR >/dev/null ; then ...
It should be just geany without -i option (or use a wrapper script that includes the option).
In the shellcms code I've found this
if [ -x ${PWD0}/${EDITOR} ];then #ex: mozeditor
EDITOREXE="${PWD0}/${EDITOR}"
else
if which $EDITOR >/dev/null ; then ...
- Fri Apr 21, 2023 2:24 am
- Forum: EasyOS
- Topic: Using ShellCMS
- Replies: 7
- Views: 729
Using ShellCMS
Hello everyone, I follow up the blog page of BarryK, and I saw that you could use shellCMS, I am currently trying to replicate the instructions in the site https://bkhome.org/shellcms/installing-shellcms-as-a-blog.html but even changing the EDITOR variable from "geany -i" to another editor I ...