I’m looking for a tool to generate a simple personal website (like an online business card) to self host. Preferably a static site generator.

I’m now using Hugo, but it does too much for me and changes too often. (I can’t update my current page, because the template is no longer arond)

  • happydoors@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    9 days ago

    Have fun picking through the many options, haha. I just figured out Ghost (open source blogging platform) but it can easily be edited with static pages. It is basic but I am okay with the functionalities and ease of use

  • Vipsu@lemmy.world
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    10 days ago

    Create a custom hugo template that you can maintain yourself however and whenever.

  • Nis@feddit.dk
    link
    fedilink
    English
    arrow-up
    66
    arrow-down
    2
    ·
    10 days ago

    You could just do it manually. Write the HTML an CSS.

      • tburkhol@lemmy.world
        link
        fedilink
        English
        arrow-up
        14
        arrow-down
        1
        ·
        10 days ago

        You don’t even need to learn HTML to do it. Any word processor will ‘save as HTML,’ but the markup should be straightforward enough for anyone considering selfhosting. CSS can be a real rabbit hole, but browser default styles aren’t awful.

        • communism@lemmy.ml
          link
          fedilink
          English
          arrow-up
          7
          arrow-down
          2
          ·
          10 days ago

          I don’t think there is really any learning curve to “learning HTML” if you are not trying to do anything funky and you just want a simple static website that functions, like OP said, “like a business card”. You may as well just type it out yourself. If you’ve never written HTML before just look at w3schools.

      • MonkeMischief@lemmy.today
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 days ago

        This is so cool, thanks for sharing! I’m really excited about the “indie web”, being a network of expressive people being people rather than just a giant commerce machine.

  • modeh@piefed.social
    link
    fedilink
    English
    arrow-up
    5
    ·
    10 days ago

    My HTML/CSS skillset is abysmal, so I went with Hugo and deployed the repository onto cloudflare. It was up in minutes.

  • Diplomjodler@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    2
    ·
    9 days ago

    If you know some Python, I’d look at Flask. It might be overkill for a static site but it’ll leave the door open for future expansion. If your goal is minimal effort, this is probably not the way to go.

  • CallMeAnAI@lemmy.world
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    5
    ·
    10 days ago

    Screech all you want, Copilot. It’ll take 10 minutes to get an MVP and you can just tweak from there.

  • Xylight@feddit.online
    link
    fedilink
    English
    arrow-up
    2
    ·
    8 days ago

    It might be overkill, but my website xylight.dev is written in Svelte with the framework Sveltekit. I use the adapter-static and disabled the client JavaScript with export const csr = false in my +layout.ts.

    I really like Svelte since it lets me write reusable components really quickly, with very native feeling markup that, once I prerender it, expands into normal HTML.

  • SmokeyDope@lemmy.world
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    1
    ·
    9 days ago

    I wrote my own set of tools in python that convert a simple gemtext formatted .gmi file into a static HTML file thats served by apache.

    I’m a big fan of the Gemini Protocol project and found that handwriting pages in gemtext was ideal for focusing on text content and not worrying about formatting. Converting it to HTML+CSS with some scripts is pretty easy.

    If anyone’s interested I can give a link, currently just hosting source locally on my website, really should get a public github running.

  • FreedomAdvocate@lemmy.net.au
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    2
    ·
    9 days ago

    People are going to hate this, but AI is perfect for this. You can literally just ask it to make whatever you want the website to look like in natural language and it will give you the code and generate a html page for you to preview.