Compare commits
2 commits
b43071c83d
...
335176e052
Author | SHA1 | Date | |
---|---|---|---|
335176e052 | |||
3c4944bacb |
8 changed files with 4 additions and 5 deletions
|
@ -69,7 +69,6 @@ module.exports = function (eleventyConfig) {
|
|||
.reduce((series, post) => {
|
||||
series[post.data.series] = series[post.data.series] ?? [];
|
||||
series[post.data.series].push(post);
|
||||
console.log(series);
|
||||
return series;
|
||||
}, {});
|
||||
});
|
||||
|
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
run: npm install
|
||||
- name: Build Website
|
||||
run: npm run build
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build
|
||||
path: dist/
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
<meta property="og:title" content="{{ site.title }} - {{ title }}">
|
||||
<meta property="og:description" content="{{ summary }}">
|
||||
<meta property="og:site_name" content="{{ site.title }} - {{ title }}">
|
||||
<meta property="og:image" content="https://sp-codes.de/img/sp-codes.jpg">
|
||||
<meta property="og:image" content="https://sp-codes.de/img/og.png">
|
||||
<meta property="og:updated_time" content="{{ site.buildTime }}">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{{ site.title }} - {{ title }}">
|
||||
<meta name="twitter:description" content="{{ summary }}">
|
||||
<meta name="twitter:image" content="https://sp-codes.de/img/sp-codes.jpg">
|
||||
<meta name="twitter:image" content="https://sp-codes.de/img/og.png">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
<link rel="stylesheet" href="{{ '/css/main.css' | rev }}">
|
||||
|
|
BIN
src/img/bg.jpg
BIN
src/img/bg.jpg
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 19 KiB |
BIN
src/img/bg2.jpg
BIN
src/img/bg2.jpg
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
BIN
src/img/og.png
Normal file
BIN
src/img/og.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 83 KiB |
Binary file not shown.
Before Width: | Height: | Size: 179 KiB |
|
@ -26,7 +26,7 @@ html, body {
|
|||
|
||||
body {
|
||||
background-color: #222;
|
||||
background-image: url("../img/bg2.jpg");
|
||||
background-image: url("../img/bg.jpg");
|
||||
color: #fff;
|
||||
min-height: 100vh;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
|
|
Loading…
Reference in a new issue