Download
We're evolving to serve you better! This current forum has transitioned to read-only mode. For new discussions, support, and engagement, we've moved to GitHub Discussions.

Managing custom html page

  • #9361
    Avatar photo[anonymous]

    If I do need to manage an seperate static html + css page inside Publii project files (input, output, preview) how I can achieve it?
    My goal is also to deploy it to remote server if only possible.

    #9368
    Avatar photo[anonymous]

    I’m not sure how you could manage a ‘separate’ static HTML + CSS page inside a Publii project. However, you could upload a separate page using a separate FTP program. But of course, using this option, the ‘separate’ page and its assets would not get backed up by Publii — though you could then perhaps use full site backup options on your web hosting server.

    #9370
    Avatar photo[anonymous]

    I think you can upload them in the root directory through the file manager.

    #9371
    Avatar photo[anonymous]

    Upload maybe yes, but I can’t generate it using partials.hbs ?

    #9384
    Avatar photo[anonymous]

    Yes, it is possible.
    1. You create a specific post template in config.json:
    “postTemplates”: {
    …,
    “myHtml”: “My personal HTML page”
    },
    2. You create the post-myHtml.hbs file which contains your custom css/html code.
    3. You create a post with the title you want (e.g. personal) and you give it the myHtml template.
    4. The rendering creates the personal.html file that responds to the post-myHtml.hbs syntax (if you don’t use the hendbars {{{text}}} the content is independent of what you write in Publii)