🌿 Nogle gange savner jeg at sidde på en lille taverna sydpå.

Selvom jeg ikke kan trylle os til Athen, har jeg leget med at genskabe de autentiske græske kartofler, Patates Fournou, direkte i airfryeren. Det er blevet en ny favorit herhjemme, som passer til næsten alt!

👉 Du kan finde min personlige guide lige her:
https://airfryerkogebogen.dk/graeske-kartofler-i-airfryer/
#madblog #airfryerdk #tilbehør

Græske kartofler i Airfryer

Græske kartofler, i airfryer med vores nemme opskrift. Få indsigt i Patates Fournou oprindelse, variationer, og hvad du kan servere til.

Opskrifter til airfryer | Airfryerkogebogen.dk

I have just given that configuration a try (with a different domain of course) and federation worked out of the box.

However I have noticed a corner case where the link is not properly rendered.

This can happen if https:// was not present initially and the cache still returns the previous value.

This should now be fixed.

Install the version 1.3.5 of #madblog and let me know if it works.

fix(activitypub): Drop cached URLs without scheme · 0e79f90843

- Validate cached file/reply URLs start with http(s) and regenerate if stale - Add tests for scheme-less cache entries - Update changelog for 1.3.5 fix

Platypush Git

🧐 Jeg bliver ofte spurgt: "Morten, er en airfryer virkelig pengene værd?"

Det er et godt spørgsmål! Efter at have testet utallige retter og modeller, har jeg fundet ud af, at selvom den er fantastisk, er der også ting, man skal være opmærksom på. Jeg har skrevet en guide, der hjælper dig med at gennemskue hypen.

👉 Læs mine fordele og ulemper
https://airfryerkogebogen.dk/fordele-og-ulemper-airfryer/

#airfryer #køkkenudstyr #madblog

Fordele og ulemper Airfryer

Fordele og ulemper airfryer. Opdag de vigtigste fordele og ulemper ved airfryere i denne dybdegående guide. Få gratis oplysning her.

Opskrifter til airfryer | Airfryerkogebogen.dk

I will be speaking about #Madblog and self-built ActivityPub blogging solutions in Pavia, Italy, on July 8th, accompained by many other amazing friends from the Fediverse and beyond.

Thank you @devconf for giving me this great opportunity!

The Programmer’s Fulcrum: 27 March, 2026

Welcome to this week’s The Programmer’s Fulcrum.

It’s your weekly review of the essential news in the Open Media Network and Fediverse development communities with a focus on devastating big tech via Techno Anarchism. We aim to provide actionable content you can use to destroy Techno Feudalism each week. It has the additional benefit of weakening authoritarianism.

IMHO, the best way to do […]

https://newsletter.mobileatom.net/the-programmers-fulcrum-27-march-2026/ #ActivityPub #ATProto #Beaver #bluesky #Bonfire #bridgyfed #Calibre #CSS #docker #Drupal #Elena #FediSuite #fediverse #FunkWhale #git #GitHub #GNOME #grapheneos #Gutenberg #Holos #HTML #HumanJson #javascript #Krita #Linux #loops #Madblog #Markdown #Mastodon #Movim #OMN #OpenShot #p2p #PostmarketOS #redis #RSS #SailfishOS #Slidge #Snac #Thunderbird #Vim #Voxit #WordPress #XMPP #xWiki

@[email protected]

Is there a complete documentation of all configuration variables? In the config yaml example I didn't find the nav_links variable.

It's in the example - but I've added it today, the timing was perfect because I also needed it to migrate my personal website.

A full reference of the configuration parameters is on the README too.

if I want to link to a specific blog's article?

If you link to a blog article from another blog article a Webmention will be automatically sent out, so you can see the comment under the original page.

If you or anyone replies to a post from Mastodon and enable_activitypub is true then the reply will also be rendered automatically under the original page.

If you instead you mean "adding a link to another article in the nav bar", that should be possible always with nav_links:

nav_links: - name: Some Important Post url: /article/some-important-post icon: https://madblog.plusbrothers.net/img/myicon.png

If I want to place the guestbook page into the nav bar, should I link the whole http URL or just /guestbook?

Both should work. But you don't need to explicitly add the guestbook to the nav bar - it's automatically added if either Webmentions or ActivityPub are enabled and enable_guestbook is not set to false.

Then - on WriteFreely, if I publish a post and pin it, it goes to header's links.

Proper support for pinned collections hasn't yet been implemented (it requires implementing ActivityPub collections on Pubby too).

The workaround for now is simply to add links to nav_links.

But every markdown post I upload on madblog, gets into the Rss I think, like normal posts, even if it's not a post but a "static" page

Everything #markdown file you put under markdown on #madblog is also included in the RSS feed - unless you set default_visibility to non-public in the configuration or set e.g. [//]: # (visibility: unlisted) (or followers, direct or draft) in the Markdown headers.

madblog/config.example.yaml at main

madblog - A minimal, general-purpose Markdown-based CMS.

Platypush Git

Support for About Me and custom nav links

@[email protected] @[email protected] I've had a bit of time today to put together a new #madblog version 🙂

About Me

Now you can just drop an ABOUT.md in your pages directory. If you provide the right metadata in the #markdown header you also get a nicely rendered semantic h-card as a bonus.

An example from the header of my site's about page (trim the initial spaces, otherwise Madblog interprets these as true headers and messes up this post):

[//]: # (title: My Name) [//]: # (name: My Name) [//]: # (given-name: My) [//]: # (family-name: Name) [//]: # (url: https://example.com) [//]: # (photo: https://example.com/photo.jpg) [//]: # (email: [email protected]) [//]: # (job-title: Cat herder) [//]: # (org: My Company|https://example.com, My Side Project|https://another-example.com) [//]: # (note: Some brief description) [//]: # (key: https://pgp.example.com/key.txt|FINGERPRINT) [//]: # (links: @[email protected]|https://example.social/@me, Github|https://github.com/me, LinkedIn|https://www.linkedin.com/in/me/, XMPP|xmpp://[email protected], Matrix|https://matrix.to/#/@me:example.com)

External Links

You can add them now to your config.yaml.

# rel_me links are only for verification / # Mastodon-double linking purposes, but # they are not rendered on the HTML rel_me: - https://example.social/@me - https://goto.social/@name # External links are automatically rendered # on the about page external_links: - url: https://example.social/@me display_name: Mastodon # nav_links are automatically rendered # on the navigation panel nav_links: - url: https://example.social/@me display_name: Mastodon icon: https://example.social/favicon.ico

Also remember to specify enable_activitypub: true (and also link, or federation may break) if you want to make the blog handle discoverable on Mastodon:

# link is required for Webmentions and ActivityPub link: https://madblog.plusbrothers.net/ enable_activitypub: true # Only set these two if you want to use a different # domain (e.g. plusbrothers.net) for your federated # handles (e.g. @[email protected]). Otherwise # it'll be @[email protected] activitypub_link: https://plusbrothers.net activitypub_domain: plusbrothers.net # The username to expose to ActivityPub - in this configuration's case # your user will be @[email protected] activitypub_username: elena # Additional profile fields that you want to add to your ActivityPub profile # when visited on Mastodon (supports verification) activitypub_profile_fields: "Powered by Madblog": https://git.fabiomanganiello.com/madblog "Main Profile": '<a href="https://mastodon.social/@me" rel="me">@[email protected]</a>'
1774201228-elettrona-poliversity-it-reply

Fabio's Blog

Fabio Manganiello
Madblog: A Markdown Folder That Federates Everywhere

A lightweight blogging engine based on text files, with native Fediverse and IndieWeb support

Fabio Manganiello
The Programmer’s Fulcrum: 20 March, 2026

Welcome to this week’s The Programmer’s Fulcrum.

It’s your weekly review of the essential news in the Open Media Network and Fediverse development communities with a focus on devastating big tech via Techno Anarchism. We aim to provide actionable content you can use to destroy Techno Feudalism each week. It has the additional benefit of weakening authoritarianism.

IMHO, the best way to do […]

https://newsletter.mobileatom.net/the-programmers-fulcrum-20-march-2026/ #ActivityPub #Akkoma #ATProto #bluesky #Buttondown #CSS #Drupal #DrupalCMS #fediverse #Friendica #GNOME #Gutenberg #Holos #HTML #HTMX #Hubzilla #Inkwell #javascript #Joplin #Linux #Madblog #Markdown #Mastodon #MicroBlog #NodeBB #nodejs #OMN #OpenProject #PostmarketOS #Sigil #Tangled #Twig #WebComponents #WordPress