13 votes

Topic deleted by author

12 comments

  1. [9]
    SUD0
    Link
    Are you a developer? GitHub has free hosting for simple websites. You can’t have a back end, but it would be perfect for a landing page. You can also use your domain for it. https://pages.github.com/

    Are you a developer? GitHub has free hosting for simple websites. You can’t have a back end, but it would be perfect for a landing page. You can also use your domain for it.

    https://pages.github.com/

    3 votes
    1. [2]
      Octofox
      Link Parent
      Hugo + github/lab pages is a pretty good way to run a blog.

      Hugo + github/lab pages is a pretty good way to run a blog.

      2 votes
      1. [2]
        Comment deleted by author
        Link Parent
        1. notopygos
          Link Parent
          GitHub provides a free service (GitHub Pages) for hosting static files, you just have to create a repository, put some html files and enable pages. They allow using custom domain. Hugo is a static...

          GitHub provides a free service (GitHub Pages) for hosting static files, you just have to create a repository, put some html files and enable pages. They allow using custom domain.

          Hugo is a static site generator, check out gohugo.io
          You choose a theme, write some posts (in markdown) and run hugo. It will output the website a/c to the theme you've selected.

          You can also just write html files yourself and push them to github. checkout https://pages.github.com/
          There is also gitlab pages (alternative).

          5 votes
    2. [7]
      Comment deleted by author
      Link Parent
      1. [2]
        Eva
        Link Parent
        I'd probably put something like... <style>div {padding-top:20%; padding-left:50%; padding-right:50%}</style> <div><img src="http://textfiles.com/underconstruction/TokyoFuji7118constructsonic.gif">...

        I'd probably put something like...

        <style>div {padding-top:20%; padding-left:50%; padding-right:50%}</style>
        
        <div><img src="http://textfiles.com/underconstruction/TokyoFuji7118constructsonic.gif"> <img src="http://textfiles.com/underconstruction/SunsetStripArena4994ifbgraphicsconstruction.gif"> <img src="http://textfiles.com/underconstruction/CoColosseumHoop2296construction_ani.gif"></div>
        

        (I was having a lot of trouble getting that to format correctly; cross my fingers, I guess.)

        1 vote
        1. [2]
          Comment deleted by author
          Link Parent
          1. Eva
            Link Parent
            Anyway, the page @SUD0 linked should get you up and running with Github Pages, if you wanna go that route.

            Anyway, the page @SUD0 linked should get you up and running with Github Pages, if you wanna go that route.

            3 votes
      2. [4]
        Octofox
        Link Parent
        The web existed for 15 years before 2008?

        The web existed for 15 years before 2008?

        1. [3]
          unknown user
          Link Parent
          Yes. The internet was a thing in 1993.

          Yes. The internet was a thing in 1993.

          1. [2]
            Eva
            Link Parent
            It was a joke.

            It was a joke.

            1 vote
            1. unknown user
              Link Parent
              it was? mind explaining it to the unenlightened?

              it was? mind explaining it to the unenlightened?

  2. [2]
    yar
    Link
    I've got a landing page running with Gitlab and Netlify using Hugo, it's completely free and lightning fast. While the initial learning curve of how to connect them together was steep for me, it's...

    I've got a landing page running with Gitlab and Netlify using Hugo, it's completely free and lightning fast. While the initial learning curve of how to connect them together was steep for me, it's now super easy to maintain. I can add pages in markdown on my PC, push the change through Git, and tada, it's live.

    Some of the themes for Hugo are pretty awesome too.

    3 votes
    1. [2]
      Comment deleted by author
      Link Parent
      1. yar
        Link Parent
        Netflify is useful since it automatically builds and deploys my site after it's pushed within a few seconds. Whether there is a better or easier method to do this I'm not sure since that's the...

        Netflify is useful since it automatically builds and deploys my site after it's pushed within a few seconds. Whether there is a better or easier method to do this I'm not sure since that's the only way I know how to do it.

        1 vote
  3. gpl
    Link
    I'm seeing a lot of people recommend Github + Hugo, but I want to chime in to recommend using Github+Jekyll, which is another static site generator which is very easy to use. There are tons of...

    I'm seeing a lot of people recommend Github + Hugo, but I want to chime in to recommend using Github+Jekyll, which is another static site generator which is very easy to use. There are tons of themes already premade to make it easy as well. I've never used Hugo so I can't say how the two compare, but I can say that Jekyll is very easy to use.

    1 vote