You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to output site pages inside a directory with the "page name" and an "index.html" file inside? This would provide a clean url with a "/" ending in the url address.
Python's Pelican static site generator uses a config file to specify this function simply like so:
PAGE_SAVE_AS = '{slug}/index.html'
{slug} would be the page name used in the markdown file.
Thanks
The text was updated successfully, but these errors were encountered:
Is it possible to output site pages inside a directory with the "page name" and an "index.html" file inside? This would provide a clean url with a "/" ending in the url address.
Python's Pelican static site generator uses a config file to specify this function simply like so:
PAGE_SAVE_AS = '{slug}/index.html'
{slug} would be the page name used in the markdown file.
Thanks
The text was updated successfully, but these errors were encountered: