Pold
Pold

Reputation: 347

Create Website for a Github Project

I've built a software project and hosted it on Github. Now, I'd like to create an accompanying website (with some features like 'About Me', 'Documentation', 'Further Information', etc.). I also have some JavaScript content that should be located there. That's why I'm looking for an easy way to create and maintain a nice website (by the way, I'm using Ubuntu 12.04). I looked at Github pages, the themes are pretty beautiful there, but it just creates one page and no subpages. Nevertheless, I think Github would be a good host for my website in any case. But before diving deeper into plain HTML and adding further pages, I'd like to have some advice:

I know that I can create pages in HTML and CSS with standard editors and I've done that before (years ago). However, I have absolutely no idea about current developments. That's why I'm looking for a modern way for creating accompanying websites for software projects.

Upvotes: 1

Views: 658

Answers (1)

Christian Specht
Christian Specht

Reputation: 36451

With Jekyll, you can create not only blog posts, but static sites with several pages as well.

One example hosted on GitHub Pages is the Jekyll site itself.
The source code is in the gh-pages branch of the Jekyll repository.

Jekyll is easy to get started with - check the docs.
You might also want to take a look at Bootstrap for some basic HTML templates.

Upvotes: 2

Related Questions