💾 Archived View for alltext.umaneti.net › fronde › NEWS.gmi captured on 2024-07-08 at 23:40:41. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
This new release continues the stability work. However, it also comes with two new features, which should open new ways of improvement in the future:
After a second thought, this release remove the support of Liquid tags while rendering custom org-options settings. This is to stay homogeneous with other org placeholders. Liquid tags are only expected to render internal/private templates.
This new release brings a lot of stability improvements and inner refactoring. Even if the visible changes list might look a bit poor, this release is a big step forward and will help a lot to develop new features in the future. Some parts of the software were poorly designed and we worked hard to improve the coding.
After the update, you will need to update your installations and force a full publication of your websites (because the way templates are inserted inside published files changed). Actually, this will become the new standard routine after any fronde upgrade.
fronde update fronde build -f
Here is the list of the most visible changes:
As tags and feeds are now published under their related source public path and no more directly at the root of the publication folder, you might want to setup some redirections in your web server configuration.
For the following example configuration:
--- sources: - path: src/news is_blog: true
Feeds and tags will now be published under `public_html/news/feeds/' and `public_html/news/tags/' instead of `public_html/feeds/' and `public_html/tags/'. Thus you might want to setup some redirections like the following for nginx:
location ~ ^/tags/(?<slug>.*)$ { return 301 /news/tags/$slug; } location ~ ^/feeds/(?<slug>.*)$ { return 301 /news/feeds/$slug; }
--
📅
📝 Étienne Deparis with GNU/Emacs 29.4 (Org mode 9.7.6)