• bob@feddit.uk
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Learn html and CSS then create a simple static website. It’s a lot easier than it sounds, Mozilla has great documentation.

  • griD@feddit.de
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Personally, I’d use just simple HTML + precompiled CSS in the form of SASS / SCSS. Because modern CSS is actually fun when it’s precompiled :)

  • snorkbubs@fedia.io
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    1 year ago

    My answer is probably boring, but it works, and I had fun with my own. Just set up Wordpress. At this point, you can find templates for any site design imaginable, and there are a million plugins for it. It’s an all-around solid platform, that has mountains of documentation. Wordpress was made for blogging, can’t go wrong there, but I’ve used it for all kinds of stuff, including ecommerce. It’s simple and effective enough that I have a hard time going any other direction.

    I used to host Wordpress sites on a home LAMP server; it was a fun project that didn’t cause a bunch of headaches, mainly because of the amount of available documentation. Search “wordpress self-host” and you’ll find a whole lot of information.

    Good luck with whatever you decide on!

    • rglullis@communick.news
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      I’m yet to understand why people downvote comments like yours. Your answer was on-topic, provided a reasoning, was well-written… even if I haven’t fully recovered from the trauma of having two wordpress sites hacked, I still think your comment has merit.

      • Deebster@infosec.pub
        link
        fedilink
        English
        arrow-up
        0
        arrow-down
        1
        ·
        1 year ago

        It turns out that people on Lemmy are no better responsibly using a downvote button than anywhere else. I think you should have to at least select a reason why you’re downvoting to add some friction - maybe options something like “I don’t like this”, “I disagree”, “This is factually incorrect”, “Spam”, “Abusive language”, etc. Then you can filter out the first two!

  • passepartout@feddit.de
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 year ago

    Those examples you listed are not really modern imo. I’m not an UI/UX expert though.

    I used Hugo to build my personal website. You can also easily build blogs with it. The difference to the usual approach is that you “code” the website in markdown which makes it super easy. Hugo then generates the html and css for you, which gets statically hosted. Check out the showcases and themes if you’re interested. I used a theme called papermod, it’s pretty common.

    • Urist@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago

      Agree on Hugo being easy to work with. I also think having a static website is a good idea in general due to the low resource usage. My Raspberry Pi, even though it is loaded with many web applications, always manages to serve my hugo website blazingly fast. If you need rich content, for example videos, you can always embed them in some way. Another option I tried that worked okay is Pelican, though I use Hugo now since it seems the better option for me. In general I think any static site generator with templates will do the job. Even a minimalist solution such as pandoc could do it, though it would be much more manual work to get working.