Bludit v4 - Alpha version

miata
Jr. Bludit
Posts: 2
Joined: Thu Jul 07, 2022 8:46 am

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
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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).
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
Misteric
Ssr. Bludit
Posts: 13
Joined: Mon Aug 08, 2022 2:55 pm
Has thanked: 2 times
Been thanked: 4 times

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
User avatar
MrMiMu
Jr. Bludit
Posts: 2
Joined: Mon Nov 07, 2022 11:23 am

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?
Attachments
screenshot.jpg
screenshot.jpg (24.85 KiB) Viewed 51438 times
User avatar
MrMiMu
Jr. Bludit
Posts: 2
Joined: Mon Nov 07, 2022 11:23 am

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?
wmcig
Ssr. Bludit
Posts: 21
Joined: Tue Jun 20, 2017 5:32 pm

Hi,

how it is going forward with bludit v4? When will it be official?
Mark
Ssr. Bludit
Posts: 26
Joined: Sun Oct 08, 2017 4:01 pm

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.
Ranger
Jr. Bludit
Posts: 2
Joined: Sat Jun 10, 2023 5:03 pm

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.
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

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
User avatar
Misteric
Ssr. Bludit
Posts: 13
Joined: Mon Aug 08, 2022 2:55 pm
Has thanked: 2 times
Been thanked: 4 times

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>
Post Reply