mirror of
https://github.com/Mikaela/cv.git
synced 2025-08-19 02:57:27 +02:00
Compare commits
5 Commits
e079f24eb8
...
f2a6e6154f
Author | SHA1 | Date | |
---|---|---|---|
f2a6e6154f | |||
a5fa23bda5 | |||
87c2041751 | |||
8e87a001ec | |||
b7c8467447 |
9
.github/dependabot.yml
vendored
9
.github/dependabot.yml
vendored
@ -19,3 +19,12 @@ updates:
|
|||||||
github-actions:
|
github-actions:
|
||||||
patterns:
|
patterns:
|
||||||
- "*"
|
- "*"
|
||||||
|
|
||||||
|
- package-ecosystem: "npm"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
groups:
|
||||||
|
npm:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
@ -51,7 +51,7 @@ repos:
|
|||||||
args: [--update-only, --notitle]
|
args: [--update-only, --notitle]
|
||||||
|
|
||||||
- repo: https://github.com/python-jsonschema/check-jsonschema
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
rev: 0.28.3
|
rev: 0.28.4
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-dependabot
|
- id: check-dependabot
|
||||||
- id: check-github-workflows
|
- id: check-github-workflows
|
||||||
|
0
.prettierrc
Normal file
0
.prettierrc
Normal file
12
Gemfile.lock
generated
12
Gemfile.lock
generated
@ -218,7 +218,7 @@ GEM
|
|||||||
jekyll (>= 3.5, < 5.0)
|
jekyll (>= 3.5, < 5.0)
|
||||||
jekyll-feed (~> 0.9)
|
jekyll-feed (~> 0.9)
|
||||||
jekyll-seo-tag (~> 2.1)
|
jekyll-seo-tag (~> 2.1)
|
||||||
minitest (5.23.0)
|
minitest (5.23.1)
|
||||||
mutex_m (0.2.0)
|
mutex_m (0.2.0)
|
||||||
net-http (0.4.1)
|
net-http (0.4.1)
|
||||||
uri
|
uri
|
||||||
@ -230,9 +230,9 @@ GEM
|
|||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
public_suffix (5.0.5)
|
public_suffix (5.0.5)
|
||||||
racc (1.7.3)
|
racc (1.8.0)
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.11.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
rexml (3.2.8)
|
rexml (3.2.8)
|
||||||
strscan (>= 3.0.9)
|
strscan (>= 3.0.9)
|
||||||
@ -247,8 +247,7 @@ GEM
|
|||||||
sawyer (0.9.2)
|
sawyer (0.9.2)
|
||||||
addressable (>= 2.3.5)
|
addressable (>= 2.3.5)
|
||||||
faraday (>= 0.17.3, < 3)
|
faraday (>= 0.17.3, < 3)
|
||||||
simpleidn (0.2.2)
|
simpleidn (0.2.3)
|
||||||
unf (~> 0.1.4)
|
|
||||||
strscan (3.1.0)
|
strscan (3.1.0)
|
||||||
terminal-table (1.8.0)
|
terminal-table (1.8.0)
|
||||||
unicode-display_width (~> 1.1, >= 1.1.1)
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||||
@ -256,9 +255,6 @@ GEM
|
|||||||
ethon (>= 0.9.0)
|
ethon (>= 0.9.0)
|
||||||
tzinfo (2.0.6)
|
tzinfo (2.0.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
unf (0.1.4)
|
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.9.1)
|
|
||||||
unicode-display_width (1.8.0)
|
unicode-display_width (1.8.0)
|
||||||
uri (0.13.0)
|
uri (0.13.0)
|
||||||
webrick (1.8.1)
|
webrick (1.8.1)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
theme: jekyll-theme-minimal
|
#theme: jekyll-theme-minimal
|
||||||
title: CV
|
title: CV
|
||||||
description: Aminda Suomalainen, verkkopalveluylläpitäjä/web service administrator
|
description: Aminda Suomalainen, verkkopalveluylläpitäjä/web service administrator
|
||||||
baseurl: "/" # the subpath of your site, e.g. /blog/
|
baseurl: "/" # the subpath of your site, e.g. /blog/
|
||||||
|
19
assets/css/style.scss
Normal file
19
assets/css/style.scss
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
# front-end
|
||||||
|
---
|
||||||
|
|
||||||
|
:root {
|
||||||
|
color-scheme: dark light;
|
||||||
|
font-family: "Liberation Serif", "Tinos", "Times New Roman", serif;
|
||||||
|
margin: auto;
|
||||||
|
// A4 paper
|
||||||
|
max-width: 210mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
@ -7,6 +7,7 @@ date: 2021-11-18 17:09:40 +0200
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>CV kielivalikko/language selector</title>
|
<title>CV kielivalikko/language selector</title>
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<ul>
|
<ul>
|
||||||
|
5
package.json
Normal file
5
package.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"devDependencies": {
|
||||||
|
"prettier": "3.2.5"
|
||||||
|
}
|
||||||
|
}
|
24
pnpm-lock.yaml
generated
Normal file
24
pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
lockfileVersion: "9.0"
|
||||||
|
|
||||||
|
settings:
|
||||||
|
autoInstallPeers: true
|
||||||
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
|
importers:
|
||||||
|
.:
|
||||||
|
devDependencies:
|
||||||
|
prettier:
|
||||||
|
specifier: 3.2.5
|
||||||
|
version: 3.2.5
|
||||||
|
|
||||||
|
packages:
|
||||||
|
prettier@3.2.5:
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==,
|
||||||
|
}
|
||||||
|
engines: { node: ">=14" }
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
|
snapshots:
|
||||||
|
prettier@3.2.5: {}
|
Loading…
x
Reference in New Issue
Block a user