mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-16 17:09:28 +01:00
initial enabling of hyphenation and languages
This commit is contained in:
parent
309832d60e
commit
5845427d38
@ -57,7 +57,7 @@ repos:
|
|||||||
[
|
[
|
||||||
--update-only,
|
--update-only,
|
||||||
--title,
|
--title,
|
||||||
"_Automaattinen sisällysluettelo - Automatically generated Table of Contents_",
|
'<em lang="fi">Automaattinen sisällysluettelo</em> / <em lang="en">Automatically generated Table of Contents</em>',
|
||||||
]
|
]
|
||||||
|
|
||||||
- repo: https://github.com/python-jsonschema/check-jsonschema
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
# Prettier cannot handle Jekyll variables?
|
# Prettier cannot handle Jekyll variables?
|
||||||
_includes
|
_includes
|
||||||
|
_layouts
|
||||||
blog/*.xml
|
blog/*.xml
|
||||||
*.json
|
*.json
|
||||||
|
12
_config.yml
12
_config.yml
@ -1,10 +1,11 @@
|
|||||||
# Site settings
|
# Site settings
|
||||||
title: Aminda Suomalainen ⚧
|
title: Aminda Suomalainen ⚧
|
||||||
|
author: <div lang="fi"><a href="https://aminda.eu">Aminda Suomalainen ⚧</a></a>
|
||||||
description: > # this means to ignore newlines until "baseurl:"
|
description: > # this means to ignore newlines until "baseurl:"
|
||||||
I am a Highly Sensitive Autistic Pirate with Linux experience since 2008. I am familiar with git and looking for employment. ⚧
|
<div lang="en">I am a Highly Sensitive Autistic Pirate with Linux experience since 2008. I am familiar with git and looking for employment. ⚧
|
||||||
<br/><br/>*This website is licensed under the
|
<br/><br/><em>This website is licensed under the
|
||||||
[Creative Commons Attribution 4.0 International License.](https://creativecommons.org/licenses/by/4.0/)
|
<a href="(https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
|
||||||
by [Aminda Suomalainen](https://aminda.eu/).*
|
by <a href="https://aminda.eu">Aminda Suomalainen</a>.</em></div>
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog/
|
baseurl: "" # the subpath of your site, e.g. /blog/
|
||||||
# I would like to use www subdomain to not have all cookies passed to top
|
# I would like to use www subdomain to not have all cookies passed to top
|
||||||
# level, but there seems to be a redirect issue otherwise.
|
# level, but there seems to be a redirect issue otherwise.
|
||||||
@ -22,6 +23,9 @@ rss: Blog
|
|||||||
keybase_username: Mikaela
|
keybase_username: Mikaela
|
||||||
telegram_username: AmindaEU
|
telegram_username: AmindaEU
|
||||||
|
|
||||||
|
# Sadly the content is mostly in English and this is just the last fallback
|
||||||
|
lang: en
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
theme: minima
|
theme: minima
|
||||||
|
3
_layouts/default.html
vendored
3
_layouts/default.html
vendored
@ -1,5 +1,6 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="{{ page.lang | default: site.lang | default: "" }}">
|
||||||
|
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
4
_layouts/index.html
vendored
4
_layouts/index.html
vendored
@ -1,6 +1,6 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="{{ page.lang | default: site.lang | default: "" }}">
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{% include header.html %}
|
{% include header.html %}
|
||||||
|
2
_layouts/mini.html
vendored
2
_layouts/mini.html
vendored
@ -1,5 +1,5 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="{{ page.lang | default: site.lang | default: "" }}">
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
<body>
|
<body>
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
|
@ -23,6 +23,7 @@ $monospace-font-family: "Liberation Mono", "Cousine", "Courier New", monospace;
|
|||||||
* {
|
* {
|
||||||
color: revert !important;
|
color: revert !important;
|
||||||
overflow-wrap: break-word !important;
|
overflow-wrap: break-word !important;
|
||||||
|
hyphens: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
Loading…
Reference in New Issue
Block a user