Search found 6 matches

by shevina
Thu Dec 30, 2021 8:01 pm
Forum: Themes
Topic: [Theme] Layla's Diary
Replies: 2
Views: 798

Re: [Theme] Layla's Diary

Wow! Thank you Edi.
With pleasure.
by shevina
Wed Dec 29, 2021 1:18 pm
Forum: Themes
Topic: [Theme] Layla's Diary
Replies: 2
Views: 798

[Theme] Layla's Diary

Screenshot2.png Layla's Diary is a minimal & clean theme for Bludit. Hi everyone, I've just made a new theme for Bludit, using Bulma css. (Released under GPL v3 License) I started it as a fun project when I was exploring Bludit cms for fun:) I've created a simple pagination for the theme, and a...
by shevina
Mon Dec 27, 2021 1:35 am
Forum: Themes
Topic: Separate home page and blog (loop) page in theme (developing a new theme)
Replies: 7
Views: 4286

Re: Separate home page and blog (loop) page in theme (developing a new theme)

1. Change the code on the index.php. <?php if ($WHERE_AM_I=='home') { include(THEME_DIR_PHP.'home.php'); } elseif ($page->template()) { $file = THEME_DIR_PHP.$page->template().'.php'; if (file_exists($file)) {include($file);} else {include(THEME_DIR_PHP.'page.php');} } else { include(THEME_DIR_PHP....
by shevina
Sun Dec 26, 2021 9:55 am
Forum: Themes
Topic: Separate home page and blog (loop) page in theme (developing a new theme)
Replies: 7
Views: 4286

Re: Separate home page and blog (loop) page in theme (developing a new theme)

Bernie wrote: Sun Dec 26, 2021 12:35 am Write a module with which you can put your content on your homepage.
Thanks Bernie, sorry to bother but I'm not very familiar with php or Bludit, you mean module in the theme or a separate plugin? Is there any example (theme)?
by shevina
Sat Dec 25, 2021 10:55 am
Forum: Themes
Topic: Separate home page and blog (loop) page in theme (developing a new theme)
Replies: 7
Views: 4286

Re: Separate home page and blog (loop) page in theme (developing a new theme)

Thanks Edi, that worked nicely for blog. But now I have other issues, first my menu messed up: got two menu Items pointing to home. The page created by Bludit and the Item I coded for pointing to root of web site. I think I can override this by removing the item from navbar.php and letting the pages...
by shevina
Fri Dec 24, 2021 7:37 pm
Forum: Themes
Topic: Separate home page and blog (loop) page in theme (developing a new theme)
Replies: 7
Views: 4286

Separate home page and blog (loop) page in theme (developing a new theme)

Hi guys, I'm developing a new theme for bludit, this theme is based on my html template. I can't figure it out how to implement a way that my theme show's a static page in front and have a separate page for blog to show posts. In fact front page is working but can't find a way for blog. Only way I c...