getzola / hyde

Port of https://github.com/poole/hyde to Zola
MIT License
76 stars 51 forks source link

Feature: `hyde_links` relative from `base_url` #31

Open homersimpsons opened 1 year ago

homersimpsons commented 1 year ago

Currently, the hyde_links config option is used directly in the template:

https://github.com/getzola/hyde/blob/e6df4068d44fd0067ab956fd387802d79e36f824/templates/index.html#L43

This is somewhat inconvenient when the site is not hosted at the root of the domain (for instance on github pages).

The 2 inconvenient I can see are:

Here are the options I can see of for the current behavior of the list:

I think it would be a good addition if it could be prefixed with the base_url or if there was a syntax to use base_url in the config.toml.

Of course absolute links should still be available.

Keats commented 1 year ago

We can maybe just use get_url ?

homersimpsons commented 1 year ago

I just tested get_url and it looks like it does not handle external links.