Bludit v4 - Alpha version

User avatar
CCDzine
Ssr. Bludit
Posts: 13
Joined: Thu Sep 07, 2023 11:49 pm
Location: Sierra Nevada Mountains, Califonia
Has thanked: 4 times
Been thanked: 6 times
Contact:

Misteric wrote: Mon Jul 10, 2023 7:49 am

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>
Thank you for this. I added prev/next links and SVG icons. This was a great help for we new to Bludit.
Greg Sweet
randomuser
Jr. Bludit
Posts: 2
Joined: Sun Oct 29, 2023 2:21 pm

Hello,

Is there any news about the v4 ?

Can't find anything on https://blog.bludit.com/bludit-4-road-map, neither on Github (no branch), etc

Thanks a lot ;)
Surreal9951
Jr. Bludit
Posts: 1
Joined: Tue Mar 05, 2024 12:21 pm

randomuser wrote: Fri Feb 02, 2024 11:55 am Hello,

Is there any news about the v4 ?

Can't find anything on https://blog.bludit.com/bludit-4-road-map, neither on Github (no branch), etc

Thanks a lot ;)
I also join the question. How does it look like with the further development? ;)
User avatar
jmonroe
Sr. Bludit
Posts: 39
Joined: Mon Feb 22, 2016 8:06 am
Location: USA
Has thanked: 1 time
Contact:

Any updates on when v4 will be releases? Been working on it since 2021. Haven't seen much activity in the way of pushing forward with new features/version.

Also, multi-user self-registration would be an awesome plugin/feature to have in Bludit.
Jeremy Monroe
I Support Bludit via Patreon
arfa
Master Bludit
Posts: 98
Joined: Tue Jul 04, 2017 4:31 am
Location: New Zealand
Has thanked: 6 times
Been thanked: 14 times

The question has already asked: "what news on 4?"
I am increasing my commit with 3.15 and kind of imagine that 4 is either...
- not going to happen
- easy enough upgrade
- not going to happen; 2021 is quite a good while ago now.

3.15 pretty much does what I want and is accessible enough for mods. Great kit.
Edi & Diego could do with more thanks?

cheers - ak
Jey14
Jr. Bludit
Posts: 1
Joined: Fri Aug 16, 2024 12:07 pm

I'm also following up on this. If you have any more info to share...Thanx
A world without idiots would be better...
User avatar
bayerberg
Master Bludit
Posts: 152
Joined: Wed Jun 07, 2017 1:05 pm
Location: London, UK
Has thanked: 10 times
Been thanked: 19 times
Contact:

poke! any news when do we get v4? I have a couple of cool things almost ready to go, need v4 to launch :)
bludit plugins and themes - makeitblu | I do things, check them out on behance and dribbble.
User avatar
Torsten_Kelsch
Legend Bludit
Posts: 265
Joined: Thu Aug 27, 2015 10:24 pm
Location: Germany
Has thanked: 5 times
Been thanked: 2 times
Contact:

It’s nice that new 3.x versions appear from time to time, but I find version 4 very promising because of nestable static pages etc. So it would be kind if Diego could leave us any informations if he plans to work on Bludit 4 or if this new branch can be seen as dead and no longer developed …
On Error GoTo Bed
agg1401
Sr. Bludit
Posts: 36
Joined: Wed Oct 06, 2021 7:49 am
Been thanked: 5 times

I have high expectations from Bludit, I hope this script doesn't die. Because the others in the market can't even come close to this.
User avatar
Torsten_Kelsch
Legend Bludit
Posts: 265
Joined: Thu Aug 27, 2015 10:24 pm
Location: Germany
Has thanked: 5 times
Been thanked: 2 times
Contact:

agg1401 wrote: Sun Nov 24, 2024 11:29 am I have high expectations from Bludit, I hope this script doesn't die. Because the others in the market can't even come close to this.
Branch 3 is developed actively, only 4 seems to have been stopped.
On Error GoTo Bed
Post Reply