Code: Select all
<?php echo Theme::css('https://cdn.simplecss.org/simple.min.css', false); ?>Also undisclosed remote asset inclusion is a compliance issue with EU's GDPR laws (as I think the author is based in France).
Code: Select all
<?php echo Theme::css('https://cdn.simplecss.org/simple.min.css', false); ?>There's no reason that I can see given the content of it, outside of possibly tracking page loads/traffic. At the very least disclose that there is an externally loaded asset that isn't google/boostrap/jquery.Edi wrote: Sat May 09, 2026 9:42 am Perhaps there is a certain reason to use the external stylesheet.
Code: Select all
<!-- Include CSS Styles from this theme -->
<?php echo Theme::css('https://cdn.simplecss.org/simple.min.css', false); ?>
<?php echo Theme::css('css/style.css'); ?>
It's my bad actually, I didn't realize until after the fact that simple.css was akin to say bootstrap.css. Though it was a private domain and of the developers.zacharielle wrote: Fri May 29, 2026 8:09 am Hi there!
I'm the author of that theme.
The reasons why the main CSS is available as a link rather than locally are because:I thought this was clearly stated in the theme name and description (and README.md) but I'm happy to update the theme itself or metadata if you think of a better way of handling this adaptation.
- I'm not the original author of Simple.css and I don't want to take credit for work I didn't do
- I would prefer that updates on that CSS are pushed automatically since I have not much time allocated for maintenance.
Thanks anyway for reporting!