mirror of
https://github.com/Mikaela/cv.git
synced 2025-08-18 02:27:23 +02:00
Compare commits
3 Commits
6a19e95d03
...
bdb3f7d3b4
Author | SHA1 | Date | |
---|---|---|---|
bdb3f7d3b4 | |||
752152a72e | |||
1a135f12e2 |
@ -63,7 +63,7 @@ repos:
|
|||||||
# - id: reuse
|
# - id: reuse
|
||||||
|
|
||||||
- repo: https://github.com/rbubley/mirrors-prettier
|
- repo: https://github.com/rbubley/mirrors-prettier
|
||||||
rev: "v3.2.5"
|
rev: "v3.3.0"
|
||||||
hooks:
|
hooks:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
exclude_types: [json]
|
exclude_types: [json]
|
||||||
|
1
Gemfile
vendored
1
Gemfile
vendored
@ -10,5 +10,6 @@ gem "minima"
|
|||||||
#gem "jekyll-mentions"
|
#gem "jekyll-mentions"
|
||||||
gem "jekyll-redirect-from"
|
gem "jekyll-redirect-from"
|
||||||
gem "jekyll-sitemap"
|
gem "jekyll-sitemap"
|
||||||
|
gem "jekyll-seo-tag"
|
||||||
# Required for `bundle exec jekyll serve`
|
# Required for `bundle exec jekyll serve`
|
||||||
gem "webrick"
|
gem "webrick"
|
||||||
|
1
Gemfile.lock
generated
1
Gemfile.lock
generated
@ -129,6 +129,7 @@ PLATFORMS
|
|||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll
|
jekyll
|
||||||
jekyll-redirect-from
|
jekyll-redirect-from
|
||||||
|
jekyll-seo-tag
|
||||||
jekyll-sitemap
|
jekyll-sitemap
|
||||||
minima
|
minima
|
||||||
webrick
|
webrick
|
||||||
|
@ -5,6 +5,7 @@ layout: default
|
|||||||
versionString: 2024.22.2
|
versionString: 2024.22.2
|
||||||
date: 2024-05-28T08:59:32+03:00
|
date: 2024-05-28T08:59:32+03:00
|
||||||
lang: en
|
lang: en
|
||||||
|
locale: en_US
|
||||||
permalink: /en/index.html
|
permalink: /en/index.html
|
||||||
redirect_from: /en/html
|
redirect_from: /en/html
|
||||||
robots: noai, nofollow
|
robots: noai, nofollow
|
||||||
|
25
_config.yml
25
_config.yml
@ -1,14 +1,18 @@
|
|||||||
theme: minima
|
theme: minima
|
||||||
title: Curriculum Vitae
|
title: "CV, Aminda Suomalainen"
|
||||||
author: Aminda Suomalainen
|
author:
|
||||||
|
name: "Aminda Suomalainen"
|
||||||
|
url: "https://aminda.eu/"
|
||||||
description: >
|
description: >
|
||||||
Sysadmin
|
My Curriculum Vitae can be found here in Finnish and English.
|
||||||
baseurl: "/" # the subpath of your site, e.g. /blog/
|
baseurl: "" # the subpath of your site, e.g. /blog/
|
||||||
url: "https://cv.aminda.eu" # the base hostname & protocol for your site
|
tagline: "Aminda Suomalainen"
|
||||||
|
url: https://cv.aminda.eu # the base hostname & protocol for your site
|
||||||
timezone: Europe/Helsinki
|
timezone: Europe/Helsinki
|
||||||
encoding: utf-8
|
encoding: utf-8
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-sitemap
|
- jekyll-sitemap
|
||||||
|
- jekyll-seo-tag
|
||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
sitemap:
|
sitemap:
|
||||||
file: "/sitemap.xml"
|
file: "/sitemap.xml"
|
||||||
@ -23,3 +27,14 @@ kramdown:
|
|||||||
# Required for entering html blocks within the markdown such as the unstyled
|
# Required for entering html blocks within the markdown such as the unstyled
|
||||||
# list
|
# list
|
||||||
parse_block_html: true
|
parse_block_html: true
|
||||||
|
# Jekyll SEO will handle these
|
||||||
|
webmaster_verifications:
|
||||||
|
google: oELGPuQ0VNEekDke964c0XCMYaC_Nd_Mr_TRYEVRXgY
|
||||||
|
bing: DDF472BEC8E65C680D65A24256C33B24
|
||||||
|
yandex: 2d5398c328c66322
|
||||||
|
# Jekyll SEO as well
|
||||||
|
defaults:
|
||||||
|
- scope:
|
||||||
|
path: "*"
|
||||||
|
values:
|
||||||
|
image: https://media.githubusercontent.com/media/Mikaela/mikaela.github.io/lfs-media/avatar/250.jpeg
|
||||||
|
31
_includes/footer.html
Normal file
31
_includes/footer.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<footer class="site-footer h-card">
|
||||||
|
<data class="u-url" href="{{ "/" | relative_url }}"></data>
|
||||||
|
|
||||||
|
<div class="wrapper">
|
||||||
|
|
||||||
|
<h2 class="footer-heading">{{ site.title | escape }}</h2>
|
||||||
|
|
||||||
|
<div class="footer-col-wrapper">
|
||||||
|
<div class="footer-col footer-col-1">
|
||||||
|
<ul class="contact-list">
|
||||||
|
<li class="p-name">
|
||||||
|
<a href="{{ site.author.url }}">{{ site.author.name | escape }}</a>
|
||||||
|
</li>
|
||||||
|
{%- if site.email -%}
|
||||||
|
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
||||||
|
{%- endif -%}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-col footer-col-2">
|
||||||
|
{%- include social.html -%}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-col footer-col-3">
|
||||||
|
<p>{{- site.description | escape -}}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</footer>
|
@ -1,14 +1,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="robots" content="{{ page.robots }}">
|
<meta name="robots" content="{{ page.robots }}">
|
||||||
<title>{{site.title}} {{ page.title }} — {{site.author}}</title>
|
|
||||||
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<!---->
|
||||||
|
{%- seo -%}
|
||||||
|
<!---->
|
||||||
<meta name="referrer" content="no-referrer">
|
<meta name="referrer" content="no-referrer">
|
||||||
<meta name="og:title" content="{{site.title}} {{ page.title }} — {{site.author}}">
|
|
||||||
<meta name="og:description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
|
||||||
<meta name="og:site_name" content="{{site.title}} — {{site.author}}">
|
|
||||||
<meta name="og:image" content="{{site.icon}}">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
||||||
<meta http-equiv="x-dns-prefetch-control" content="off">
|
<meta http-equiv="x-dns-prefetch-control" content="off">
|
||||||
@ -16,7 +13,6 @@
|
|||||||
<link rel="icon prefetch" href="{{site.icon}}">
|
<link rel="icon prefetch" href="{{site.icon}}">
|
||||||
<link rel="me prefetch" href="{{ site.url }}">
|
<link rel="me prefetch" href="{{ site.url }}">
|
||||||
<link rel="me" href="https://aminda.eu">
|
<link rel="me" href="https://aminda.eu">
|
||||||
<link rel="canonical prefetch" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
|
||||||
<link rel="prefetch" href="https://prefetch.validatorsearch.verisignlabs.com">
|
<link rel="prefetch" href="https://prefetch.validatorsearch.verisignlabs.com">
|
||||||
<link rel="me" type="application/activity+json" href="https://sauna.social/users/aminda">
|
<link rel="me" type="application/activity+json" href="https://sauna.social/users/aminda">
|
||||||
<link rel="me" type="application/activity+json" href="https://mastodon.pirateparty.be/users/MikaelaPPFI">
|
<link rel="me" type="application/activity+json" href="https://mastodon.pirateparty.be/users/MikaelaPPFI">
|
||||||
|
@ -6,6 +6,7 @@ layout: default
|
|||||||
versionString: 2024.22.2
|
versionString: 2024.22.2
|
||||||
date: 2024-05-28T08:59:32+03:00
|
date: 2024-05-28T08:59:32+03:00
|
||||||
lang: fi
|
lang: fi
|
||||||
|
locale: fi_FI
|
||||||
permalink: /index.html
|
permalink: /index.html
|
||||||
redirect_from:
|
redirect_from:
|
||||||
- /fi.html
|
- /fi.html
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"prettier": "3.2.5"
|
"prettier": "3.3.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
pnpm-lock.yaml
generated
10
pnpm-lock.yaml
generated
@ -8,17 +8,17 @@ importers:
|
|||||||
.:
|
.:
|
||||||
devDependencies:
|
devDependencies:
|
||||||
prettier:
|
prettier:
|
||||||
specifier: 3.2.5
|
specifier: 3.3.0
|
||||||
version: 3.2.5
|
version: 3.3.0
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
prettier@3.2.5:
|
prettier@3.3.0:
|
||||||
resolution:
|
resolution:
|
||||||
{
|
{
|
||||||
integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==,
|
integrity: sha512-J9odKxERhCQ10OC2yb93583f6UnYutOeiV5i0zEDS7UGTdUt0u+y8erxl3lBKvwo/JHyyoEdXjwp4dke9oyZ/g==,
|
||||||
}
|
}
|
||||||
engines: { node: ">=14" }
|
engines: { node: ">=14" }
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
snapshots:
|
snapshots:
|
||||||
prettier@3.2.5: {}
|
prettier@3.3.0: {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user