Skip to content

Commit 8a6d053

Browse files
committed
let's try you
1 parent c068b8f commit 8a6d053

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

.devcontainer/devcontainer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/jekyll
3+
{
4+
"name": "Jekyll",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/jekyll:0-bullseye",
7+
// Features to add to the dev container. More info: https://containers.dev/features.
8+
// "features": {},
9+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
10+
"forwardPorts": [
11+
4000,
12+
35729
13+
],
14+
// Uncomment the next line to run commands after the container is created.
15+
"postCreateCommand": "jekyll --version"
16+
// Configure tool-specific properties.
17+
// "customizations": {},
18+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
19+
// "remoteUser": "root"
20+
}

.github/workflows/GitHub_Pages_Builder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: 💎 setup ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.1 # can change this to 2.7 or whatever version you prefer
20+
ruby-version: 2.7 # can change this to 2.7 or whatever version you prefer
2121

2222
- name: 🔨 install dependencies & build site
2323
uses: limjh16/jekyll-action-ts@v2

Gemfile.lock

+2-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ GEM
3535
jekyll-paginate (1.1.0)
3636
jekyll-polyglot (1.5.1)
3737
jekyll (>= 3.0)
38-
jekyll-sass-converter (3.0.0)
38+
jekyll-sass-converter (2.2.0)
3939
sass-embedded (~> 1.54)
4040
jekyll-seo-tag (2.8.0)
4141
jekyll (>= 3.8, < 5.0)
@@ -72,16 +72,13 @@ GEM
7272
safe_yaml (1.0.5)
7373
sass-embedded (1.58.3-x86_64-linux-gnu)
7474
google-protobuf (~> 3.21)
75-
sass-embedded (1.58.3-x86_64-linux-musl)
76-
google-protobuf (~> 3.21)
7775
terminal-table (3.0.2)
7876
unicode-display_width (>= 1.1.1, < 3)
7977
unicode-display_width (2.4.2)
8078
webrick (1.8.1)
8179

8280
PLATFORMS
8381
x86_64-linux
84-
x86_64-linux-musl
8582

8683
DEPENDENCIES
8784
jekyll
@@ -94,4 +91,4 @@ DEPENDENCIES
9491
rouge
9592

9693
BUNDLED WITH
97-
2.3.25
94+
2.4.6

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Alternative Friday Factorio Fan Facts
33
url: "https://alt-f4.blog"
44
description: The community-driven follow-on to the beloved Factorio Friday Facts
5+
encoding: utf-8
56
# author
67
author:
78
name: "Therenas"

assets/GLOBAL/css/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
---
3-
3+
@charset "utf-8";
44
@import url(monokai.css);
55
//Import
66
@import "reset", "base", "navbar", "buttons", "dropdown", "flex", "header",

0 commit comments

Comments
 (0)