This is a barebones website/blog based on diezcami/arctic-fox-theme with some improvements and modifications.
This website uses the Jekyll static website framework. This repo is setup to work nicely with GitHub Codespaces and deployed with GitHub Pages.
The contents of this repo are deployed to GitHub Pages at: https://demo.spicer.dev/.
This is a template repo. Click the 'Use this Template' button to copy this GitHub repo to your account or org.
To develop with Codespaces, click the Code dropdown on this repo and create a new codespace from the 'Codespace' tab. This will build and open a development environment for you.
To run the server locally, run the jekyll serve
command in your terminal. Port 4000 will be forwarded, which you can open in your web browser.
This repo's devcontainer.json includes a
postAttachCommand
that will execute this command automatically when connecting to the codespace 🚀
This repo contains a GitHub Action that rebuilds and deploys the Jekyll app to GitHub pages on each push to the main
branch.
See the GitHub Pages docs for more info on setting this up.
This template lets you tag various posts. Tags appear on individual posts and when clicked, show an aggregated lists of all posts with that tag. See the demo site's two example posts for an example.
When you add a new tag, you'll need to run through the steps below:
- First, add your new, desired tag to the preamable of a post in
_posts/
Eg:
---
layout: post
title: "Hello, User!"
date: 2023-02-28
permalink: hello
tags: getting-started
---
...
...
- Run
python3 tag_generator.py
- Restart the jekyll server.