8000 GitHub - bluestemso/bluestemso.github.io
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bluestemso/bluestemso.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 C9A4  
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bluestem

This site is built using Jekyll and deployed on Github Pages.

Getting Started

Prerequisites

  • Ruby (version 2.5.0 or higher)
  • Bundler (gem install bundler)

Local Development

  1. Install dependencies:

    bundle install
  2. Run the site locally:

    bundle exec jekyll serve

    The site will be available at http://localhost:4000

Creating New Posts

  1. Create a new file in the _posts directory with the following naming convention:

    YYYY-MM-DD-title-of-your-post.md
    
  2. Add the following front matter at the top of your post:

    ---
    layout: post
    title: "Your Post Title"
    date: YYYY-MM-DD HH:MM:SS +/-TTTT
    categories: [category1, category2]
    ---
  3. Write your content below the front matter using Markdown syntax.

Customizing the Site

Changing the Look and Feel

  1. Layouts: Modify files in the _layouts directory to change the structure of your pages

    • default.html: The base layout for all pages
    • post.html: The layout for blog posts
  2. Styles:

    • CSS files are typically located in the assets/css directory
    • Modify these files to change colors, fonts, and other visual elements
  3. Configuration:

    • Edit _config.yaml to change site-wide settings like:
      • Site title and description
      • Base URL
      • Default layout
      • Theme settings

Adding Pages

  1. Create new .md or .html files in the root directory
  2. Add front matter at the top of each file:
    ---
    layout: default
    title: "Your Page Title"
    ---

Deployment

The site is automatically deployed to GitHub Pages when you push changes to the main branch. No additional steps are required.

Resources

About

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0