Page 3 of 4

Re: Bludit v4 - Alpha version

Posted: Thu Jul 07, 2022 12:02 pm
by miata
Thank you for your prompt reply.

I want to display the thumbnails (small, medium) in the template as an article image. In this way, the full resolution is not output.

Image

Re: Bludit v4 - Alpha version

Posted: Thu Jul 07, 2022 3:37 pm
by Edi
As far as I can see there is no variable for thumbnails.

But you can modify the value for $page->coverImage().

If $page->coverImage() is for example image.jpg the thumbnails are image-thumbnail-s.jpg and image-thumbnail-m.jpg).

Re: Bludit v4 - Alpha version

Posted: Tue Aug 23, 2022 9:10 am
by Misteric
Hi there,

Will there be numbers in between the previous and next buttons for the list item page?

And is autofocus username on the login page still missing?

Misteric

Re: Bludit v4 - Alpha version

Posted: Mon Nov 07, 2022 3:04 pm
by MrMiMu
Hello,

I installed bludit 4 rc 3 on my server and I would like using the massively theme. So I tried to make it work. Finally I'm finished with some changes and it works just fine. Where can I upload it for all who like to try/use it?

Re: Bludit v4 - Alpha version

Posted: Fri Nov 11, 2022 10:18 am
by MrMiMu
Is "templates" allready implemented and how it works?

Code: Select all

/ Check if the page has a template
I make a folder

Code: Select all

\templates\contact.php
but how can I use this?

Re: Bludit v4 - Alpha version

Posted: Fri Dec 02, 2022 2:48 pm
by wmcig
Hi,

how it is going forward with bludit v4? When will it be official?

Re: Bludit v4 - Alpha version

Posted: Fri Jun 02, 2023 2:51 am
by Mark
Is this CMS still being developed? Just getting ready to start a personal project that so would love to use bludit with. But if it’s dead than I’d obviously rather not.

Re: Bludit v4 - Alpha version

Posted: Fri Jun 16, 2023 12:56 pm
by Ranger
Mark wrote: Fri Jun 02, 2023 2:51 am Is this CMS still being developed? Just getting ready to start a personal project that so would love to use bludit with. But if it’s dead than I’d obviously rather not.

I am in the same situation as you.

And I think it's truly a waste to let Bludit die.
Diego and Edi may be busy with other things and they can't be blamed for that,
but I think the project should become community-sustained, like Linux.

And the fees coming from the purchases of Pro version (Patreon supporters) should still go to founder(s), no issue with that.

I would like to hear everybody's opinion.

Re: Bludit v4 - Alpha version

Posted: Fri Jun 23, 2023 2:36 pm
by diego
Hello,

I'm checking new issues every day that are posted on GitHub to see if it makes sense to fix them or if they are just spam from "security researchers" seeking publicity. The project is not dead.

I would like to continue with v4, but I currently don't have the time, also working on new projects. Therefore, I'm considering releasing v3 with new features and bug fixes in the meantime.

We are still receiving plugins and themes for Bludit v3. I try to post them on Twitter when they are released.

Here are the commit links for plugins and themes:

https://github.com/bludit/plugins-repos ... its/master
https://github.com/bludit/themes-reposi ... its/master

Edi is also working on new projects, but he is still involved with Bludit. You can see that he is one of the reviewers for the new plugins and themes.

Bludit is an open-source project, and anyone is welcome to contribute by improving Bludit or providing plugins or themes. It's what keeps the project alive.

Regards,
Diego

Re: Bludit v4 - Alpha version

Posted: Mon Jul 10, 2023 7:49 am
by Misteric
Misteric wrote: Tue Aug 23, 2022 9:10 am Hi there,

Will there be numbers in between the previous and next buttons for the list item page?

And is autofocus username on the login page still missing?

Misteric
Code myself a script:

Code: Select all

<?php 
	if(!isset($_GET['page'])){
		$getPage = 1;
	} else {
		$getPage = $_GET['page'];
	} 
	?>
	<ul class="list-group flex-md-row">
		<?php if($getPage != 1) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=1">First</a>
		</li>
		<?php } ?>
		<?php if ($getPage >= 3) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=<?php echo $getPage - 2; ?>"><?php echo $getPage - 2; ?></a>
		</li>
		<?php } ?>
		<?php if ($getPage >= 2) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=<?php echo $getPage - 1; ?>"><?php echo $getPage - 1; ?></a>
		</li>
		<?php } ?>
		<?php if ($getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-warning" href="<?php echo Theme::siteUrl().'?page='.$getPage; ?>"><?php echo $getPage; ?></a>
		</li>
		<?php } ?>
		<?php if (Paginator::numberOfPages()-1 >= $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.$getPage + 1; ?>"><?php echo $getPage + 1; ?></a>
		</li>
		<?php } ?>
		<?php if (Paginator::numberOfPages()-2 >= $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.$getPage + 2; ?>"><?php echo $getPage + 2; ?></a>
		</li>
		<?php } ?>
		<?php if(Paginator::numberOfPages() != $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.Paginator::numberOfPages(); ?>">Last</a>
		</li>;
		<?php } ?>
		
	</ul>