URLs
Set custom urls to the pages using the url
variable.
As said in Page files, the output filename is generated using the original source file path:
posts/my-first-post.md => /posts/my-first-post/index.html
By default, the pages are saved as "pretty URLs", using directories for the path and a index.html
file. So the final URL is /posts/my-first-post/
. To disable this behaviour, set the option prettyUrls
to false
in your _config.js
file (see Configuration).
const site = lume({
prettyUrls: false,
});
/posts/my-first-post.md => /posts/my-first-post.html
The url
variable
The variable url
defined in the page allows to customize the output file individually. For example:
---
title: My first post
url: /posts/welcome/
---
In this example, the url
value change the output file name:
/posts/my-first-post.md => /posts/welcome/index.html
Note that defining manually the URL of a page will makes that prettyUrls
option won't have any effect. For example:
# Use a trailing / to pretty urls.
# For example, this outputs /posts/welcome/index.html
url: /posts/welcome/
# This outputs /posts/welcome (a file without extension)
url: /posts/welcome
# This outputs /posts/welcome.html
url: /posts/welcome.html
Relative URLs
If you only want to change the last part of the URL, you can use relative paths. For example:
---
title: My first post
url: ./welcome/
---
In this example, the page will be saved using the directory path where the source file is saved but adding welcome
in the last part of the URL.
/posts/my-first-post.md => /posts/welcome/index.html
Using ../welcome/
as URL will remove also the last directory.
/posts/my-first-post.md => /welcome/index.html
URLs as functions
The variable url
accepts also a function to generate the final value dynamically. This function has the current page object as the first argument.
For example, let's say that we want to generate automatically all URLs of our posts, using the title value. We can create a _data.js
file in the /posts/
directory, with the following code:
export function url(page) {
return `./${page.data.title}/`;
}
Now, all pages in this directory share the same url
function. The function returns the title of the page as a relative URL, for example ./My first post/
(See Shared data).
Because the URL is relative, the current directory is appended automatically (it will be resolved to /post/My first post/
). And if you are using the slugify_urls
plugin all output paths are slugified automatically, so the final url would be /post/my-first-post/
.
Using functions as URLs gives a lot of flexibility to generate the URLs as you want.
Setting url to false
Setting the url
variable to false
prevents to be saved into the dest folder (although the page is still visible by other pages, for example in paginations).
---
title: This is a title
url: false # Don't output this page yet
---