Compare commits
No commits in common. "37e80e6c9639463edb3fc679b8841538e20c9232" and "5f180972d66e2696069f009fd5dcaa2f703459bb" have entirely different histories.
37e80e6c96
...
5f180972d6
11 changed files with 12 additions and 22 deletions
|
@ -11,15 +11,13 @@ jobs:
|
|||
ruby-version: '3.2.2' # Not needed with a .ruby-version file
|
||||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||||
cache-version: 0 # Increment this number if you need to re-download cached gems
|
||||
# - uses: actions/setup-node@v4
|
||||
# with:
|
||||
# node-version: 22
|
||||
# cache: 'npm'
|
||||
# - name: Install node dependencies
|
||||
# run: npm install
|
||||
# - name: Build
|
||||
# run: npm run build
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
cache: 'npm'
|
||||
- name: Install node dependencies
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: bundle exec jekyll build
|
||||
run: npm run build
|
||||
- name: Copy
|
||||
run: cp -r dist/* /pages/
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -130,4 +130,4 @@ dist
|
|||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
#assets
|
||||
assets
|
||||
|
|
|
@ -30,8 +30,8 @@ github_username: sneakers-the-rat
|
|||
# directories
|
||||
source: ./src
|
||||
destination: ./dist
|
||||
# keep_files:
|
||||
# - assets # Build settings
|
||||
keep_files:
|
||||
- assets # Build settings
|
||||
#theme: minima
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
|
|
|
@ -2,6 +2,5 @@
|
|||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
||||
|
||||
<title>{{ page.title }}</title>
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" prefix="foaf: http://xmlns.com/foaf/0.1/"><head>
|
||||
<html lang="en" prefix="foaf: http://xmlns.com/foaf/0.1/"><head><script defer src="/assets/app.bundle.js"></script></head>
|
||||
|
||||
{% include head.html %}
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
{% if page.navigation %}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ff0000;
|
||||
height: 100%
|
||||
}
|
||||
|
||||
#container {
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
---
|
||||
|
||||
@import "index";
|
Loading…
Reference in a new issue