Bundle icons8
This commit is contained in:
parent
1618116159
commit
2f39b3a1c5
11
.github/workflows/publish.yml
vendored
11
.github/workflows/publish.yml
vendored
@ -13,6 +13,17 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12.x
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Compile assets
|
||||
run: make
|
||||
|
||||
- name: Build
|
||||
uses: TonySpegel/zola-build-action@v1
|
||||
env:
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,3 +10,5 @@ Cargo.lock
|
||||
**/*.rs.bk
|
||||
|
||||
/public/
|
||||
|
||||
/node_modules/
|
8
.vscode/tasks.json
vendored
8
.vscode/tasks.json
vendored
@ -23,6 +23,14 @@
|
||||
"--open"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Compile assets",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": [
|
||||
],
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
static/dist/line-awesome: static/dist/line-awesome/fonts/la-solid-900.woff static/dist/line-awesome/fonts/la-brands-400.woff
|
||||
|
||||
static/dist/line-awesome/fonts/la-solid-900.woff: node_modules/line-awesome/dist/line-awesome/fonts/la-solid-900.woff
|
||||
@mkdir -p $(dir $@)
|
||||
cp $< $@
|
||||
|
||||
static/dist/line-awesome/fonts/la-brands-400.woff: node_modules/line-awesome/dist/line-awesome/fonts/la-brands-400.woff
|
||||
@mkdir -p $(dir $@)
|
||||
cp $< $@
|
@ -13,6 +13,12 @@ highlight_code = true
|
||||
render_emoji = true
|
||||
external_links_target_blank = true
|
||||
|
||||
[link_checker]
|
||||
skip_prefixes = []
|
||||
skip_anchor_prefixes = []
|
||||
internal_level = "error"
|
||||
external_level = "error"
|
||||
|
||||
[extra]
|
||||
# Website
|
||||
domain_name = "ewpratten.com"
|
||||
|
24
package-lock.json
generated
Normal file
24
package-lock.json
generated
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "ewpratten.com",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"line-awesome": "^1.3.0"
|
||||
}
|
||||
},
|
||||
"node_modules/line-awesome": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/line-awesome/-/line-awesome-1.3.0.tgz",
|
||||
"integrity": "sha512-Y0YHksL37ixDsHz+ihCwOtF5jwJgCDxQ3q+zOVgaSW8VugHGTsZZXMacPYZB1/JULBi6BAuTCTek+4ZY/UIwcw=="
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"line-awesome": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/line-awesome/-/line-awesome-1.3.0.tgz",
|
||||
"integrity": "sha512-Y0YHksL37ixDsHz+ihCwOtF5jwJgCDxQ3q+zOVgaSW8VugHGTsZZXMacPYZB1/JULBi6BAuTCTek+4ZY/UIwcw=="
|
||||
}
|
||||
}
|
||||
}
|
5
package.json
Normal file
5
package.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"line-awesome": "^1.3.0"
|
||||
}
|
||||
}
|
3
sass/styles/icons.scss
Normal file
3
sass/styles/icons.scss
Normal file
@ -0,0 +1,3 @@
|
||||
$la-font-path: "/dist/line-awesome/fonts";
|
||||
|
||||
@import "../../node_modules/line-awesome/dist/line-awesome/scss/line-awesome.scss";
|
1
static/dist/.gitignore
vendored
Normal file
1
static/dist/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/line-awesome/
|
@ -30,13 +30,10 @@
|
||||
{# Preconnects for external resources #}
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link rel="preconnect" href="https://maxst.icons8.com">
|
||||
|
||||
{# External styles #}
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
|
||||
<link rel="stylesheet"
|
||||
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
|
||||
<link rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/4.0.0/github-markdown.min.css"
|
||||
integrity="sha512-Oy18vBnbSJkXTndr2n6lDMO5NN31UljR8e/ICzVPrGpSud4Gkckb8yUpqhKuUNoE+o9gAb4O/rAxxw1ojyUVzg=="
|
||||
@ -51,6 +48,7 @@
|
||||
<link rel="stylesheet" href="/styles/typography.css">
|
||||
<link rel="stylesheet" href="/styles/utils.css">
|
||||
<link rel="stylesheet" href="/styles/layout.css">
|
||||
<link rel="stylesheet" href="/styles/icons.css">
|
||||
<link rel="stylesheet" href="/styles/components/github-card.css">
|
||||
|
||||
{# Component styles #}
|
||||
|
Loading…
x
Reference in New Issue
Block a user