Bludit v4 - Alpha version
- Edi
- Site Admin
- Posts: 3166
- Joined: Sun Aug 09, 2015 5:01 pm
- Location: Zurich
- Has thanked: 65 times
- Been thanked: 90 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).
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).
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?
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 (24.85 KiB) Viewed 90257 times
Is "templates" allready implemented and how it works?
I make a folder but how can I use this?
Code: Select all
/ Check if the page has a template
Code: Select all
\templates\contact.php
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.
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
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
- Misteric
- Ssr. Bludit
- Posts: 18
- Joined: Mon Aug 08, 2022 2:55 pm
- Has thanked: 10 times
- Been thanked: 7 times
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>