Humanorum
This repository contains a Jekyll-based GitHub Pages site with a basic navigation template.
-
Install Jekyll and Bundler:
gem install jekyll bundler
-
Build the site:
jekyll build
-
Serve the site locally:
jekyll serve
-
Visit
http://localhost:4000in your browser
- Create a new
.mdfile in the root directory - Add front matter:
--- layout: default title: Your Page Title ---
- Add your content using Markdown
- Update the navigation in
_config.yml:navigation: - title: Your Page url: /your-page.html
_config.yml- Site configuration and navigation menu_layouts/default.html- Main layout template_includes/navigation.html- Navigation componentindex.md- Home pageabout.md,blog.md,contact.md- Sample pages