Skip to content

Commit 17c7e56

Browse files
committed
Add favicon
Update theme, GitHub Action, and VS Code snippets
1 parent 58f1a55 commit 17c7e56

File tree

5 files changed

+69
-7
lines changed

5 files changed

+69
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ concurrency:
1919

2020
jobs:
2121
build:
22-
runs-on: windows-latest
22+
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/setup-dotnet@v1
24+
- uses: actions/setup-dotnet@v3
2525
with:
2626
dotnet-version: '6.0.101'
2727
- uses: actions/checkout@main

.vscode/statiq-blog.code-snippets

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
// Place your cblog workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
3+
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
4+
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
5+
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
6+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
7+
// Placeholders with the same ids are connected.
8+
// Example:
9+
// "Print to console": {
10+
// "scope": "javascript,typescript",
11+
// "prefix": "log",
12+
// "body": [
13+
// "console.log('$1');",
14+
// "$2"
15+
// ],
16+
// "description": "Log output to console"
17+
// }
18+
"Statiq Front Matter": {
19+
"scope": "markdown",
20+
"prefix": "statiq-front-matter",
21+
"body": [
22+
"Title: ${1:Title}",
23+
"Published: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR",
24+
"IsPost: true",
25+
"Tags:",
26+
" - ${2:exampletag}",
27+
"---",
28+
""
29+
],
30+
"description": "Statiq front matter"
31+
},
32+
"Statiq Blog Post": {
33+
"scope": "markdown",
34+
"prefix": "statiq-blog-post",
35+
"body": [
36+
"Title: ${1:Title}",
37+
"Published: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR",
38+
"IsPost: true",
39+
"Tags:",
40+
" - ${2:exampletag}",
41+
"Categories:",
42+
" - ${3:examplecategory}",
43+
"---",
44+
"# ${1:Title}",
45+
"",
46+
"Summary",
47+
"",
48+
"<!--more-->",
49+
"",
50+
"Body"
51+
],
52+
"description": "Statiq blog post"
53+
},
54+
"Figure with Width": {
55+
"scope": "markdown",
56+
"prefix": "figure",
57+
"body": [
58+
"<?# Figure ${1:url} MaxWidth=${2:600} /?>"
59+
],
60+
"description": "Figure shortcode with width"
61+
}
62+
}

input/favicon.ico

2.35 KB
Binary file not shown.

input/about.md renamed to input/pages/about.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ based on [CleanBlog](https://github.com/statiqdev/CleanBlog).
1414

1515
<hr class="dark" />
1616
<div class="text-center">
17-
<a href="https://github.com/nullforce" target="_blank"><i class="fab fa-github" aria-hidden="true"></i></a>
18-
<a href="https://pony.social/@nullforce" target="_blank"><i class="fab fa-mastodon" aria-hidden="true"></i></a>
19-
<a href="https://twitch.tv/nullforce" target="_blank"><i class="fab fa-twitch" aria-hidden="true"></i></a>
20-
<a href="https://twitter.com/NullforceGlenn" target="_blank"><i class="fab fa-twitter" aria-hidden="true"></i></a>
17+
<a href="https://github.com/nullforce" target="_blank"><i class="fab fa-github fa-2x" aria-hidden="true"></i></a>
18+
<a href="https://pony.social/@nullforce" target="_blank"><i class="fab fa-mastodon fa-2x" aria-hidden="true"></i></a>
19+
<a href="https://twitch.tv/nullforce" target="_blank"><i class="fab fa-twitch fa-2x" aria-hidden="true"></i></a>
20+
<a href="https://twitter.com/NullforceGlenn" target="_blank"><i class="fab fa-twitter fa-2x" aria-hidden="true"></i></a>
2121
</div>

theme

Submodule theme updated 228 files

0 commit comments

Comments
 (0)