CME Documentation for all projects built with:
- GitHub Pages
- Jekyll
- Minima Theme
- jekyll-toc
- lanyon theme sidebar
- Best Jekyll Cheat Sheet
- How to Change Your Jekyll Theme
Run dev server:
npm run watch
This port only serves livereload.js over HTTP
If you open LiveReload address: http://127.0.0.1:35729
a window with "This port only serves livereload.js over HTTP." is expected behavior. This port is specifically for serving the livereload.js script, which enables live reloading of your site during development. It's not intended to serve your site content.
To view your Jekyll site, you should open Server address: http://127.0.0.1:4001/
in your browser instead. This is the server address where your site is running.
Overview:
-
http://127.0.0.1:35729: This is the port used by the LiveReload script. It's responsible for watching your files and reloading the page automatically when changes are detected. The message you see is normal when accessing this port directly.
-
http://127.0.0.1:4001/: This is the port where your actual Jekyll site is being served. This is the address you should use to view and interact with your site.
-
--port
is set in_congig.yml
-
Your Ruby version is 3.1.3, but your Gemfile specified 3.1.4
In /_posts
directory create a new markdown file with a filename in the following format:
YEAR-MONTH-DAY-title.md
Example:
2011-12-31-new-years-eve-is-awesome.md
All new pages/post files must begin with front matter:
---
layout: post
title: "Facebook Study"
date: 2023-06-22 02:12:12 -0700
categories: docs
site:
site_shortname:
excerpt: Facebook study.
github: https://github.com/engagingnewsproject/fb-study
github_shortname: engagingnewsproject/fb-study
---
Content here <-- Actual page/post markdown content add after `---` above.