mcbSolutions / Pico-Plugins

Plugins for Pico - Pico is a stupidly simple, blazing fast, flat file CMS.
MIT License
12 stars 8 forks source link

Style sheet includes are not portable #6

Open bernd-wechner opened 3 years ago

bernd-wechner commented 3 years ago

The recommendation:

 <link rel="stylesheet" href="{{ base_url }}/plugins/mcb_TableOfContent/style.css" media="screen,projection,print">

uses base_url which is not robustly portable. This:

<link rel="stylesheet" href="{{ plugins_url }}/mcb_TableOfContent/style.css">

however is.

Uncovered when using PicoCMS as a Nextcloud app. It turns out that base_url is not what you expect. But plugins_url is robust and works well.