Jump to content

spoetnik

Members
  • Posts

    87
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Europe, the Netherlands

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

spoetnik's Achievements

Full Member

Full Member (4/6)

18

Reputation

  1. I think you can find your answer here :: But please, don't test this on a production site.
  2. Yes, there is one minor issue :: https://github.com/wikimedia/less.php/issues/131 But it works with the latest version of UIkit!
  3. I made a pull request to the ProcessWire Less parser to update it to the latest version of the wikimedia Less Parser. @ryan this pull request is still open. https://github.com/ryancramerdesign/Less/pull/6
  4. If this is the source of the documentation website, https://github.com/MetaTunes/Metatunes.github.io/tree/main/DbMigrate, then I don’t see those assets.
  5. I doesn't work for me in Chrome, Edge, or a simple wget. wget https://metatunes.github.io/wire/modules/Jquery/JqueryCore/JqueryCore.js --2025-09-12 08:35:37-- https://metatunes.github.io/wire/modules/Jquery/JqueryCore/JqueryCore.js Resolving metatunes.github.io (metatunes.github.io)... 185.199.109.153, 185.199.108.153, 185.199.110.153, ... Connecting to metatunes.github.io (metatunes.github.io)|185.199.109.153|:443... connected. HTTP request sent, awaiting response... 404 Not Found 2025-09-12 08:35:37 ERROR 404: Not Found. Maybe it has something to do with the CDN github uses? I'm from the netherlands.
  6. Scripts and stylesheets aren't loading
  7. Great! $modules->getConfig('MarkupPagerNav'); Thanks for this push in the right direction!
  8. Doubting if this is the correct topic for this question, but here we go... Is it possible to have the Modules configuration in code? With RockMigrations it is possible to have your templates- and fieldsconfiguration in code. I am missing a way to have the configuration of the various modules in use in code.
  9. Is started a new ddev project, copied the site profile from https://github.com/baumrock/site-rockfrontend/tree/main/site/assets/backups/export-profile/site-rockfrontend but it still doesn't work out of the box.......
  10. Thanks for the great ecosystem of tools you have build Today i tried to setup a new clean site using the ``site-rockfrontend`` profile. Right out of the box less compiling, and live reloading doesn't work. I have read the documentation, and watched your Youtube video's, but all didn't help. Finally I came here, and read that the livereload has moved to RockDevTools. So the setting in the site config should be ``$config->rockdevtools = true;`` and not ``$config->livereload = 1;`` I think to documentation, and the site-profile are behind at the moment.
  11. Inspired by this reading? https://htmx.org/essays/template-fragments/#known-template-fragment-implementations
  12. What you describe @bernhard would be what i'm looking for. It would even be more ideal if I could expose a component via a HTMX-api. That way I don't have to maintain a separate htmx component. What I mean bij JSON api, is the AppApi integration with Twack I would be cool if the output could also be just html, and preferably a part of the template, or component.
  13. I am looking for good way to implement htmx, and creating some sort of API for this. The API should return 'parts' in HTML to replace parts in the DOM. These returned parts could be components. As Twack works with components, and has (JSON)API support, would Twack be the ideal base to build a HTMX frontend on? And how would i do this? Any suggestions?
  14. Thanks for you answer. Actually I don't need the count, but don't want any "Brands" without references. This is my final code: <ul class="list-inline"> <?php $brands = $pages->find('template=brand'); $brands = $brands->sort('-numReferences'); $brandCount = 0; foreach($brands as $brand): if($brandCount > 5) break; if ($brand->hasReferences) { $brandCount ++; echo "<li class='list-inline-item'><a href='/auctions/?brand=$brand->id'>$brand->title</a></li>"; } endforeach; ?> </ul>
×
×
  • Create New...