mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 09:39:25 +01:00
update @ Sat Dec 14 23:14:29 EET 2024
Signed-off-by: Ari Archer <ari@ari.lt>
This commit is contained in:
parent
86de9926cd
commit
b880ee9a5b
3 changed files with 10 additions and 1 deletions
|
@ -131,6 +131,7 @@
|
||||||
"read-wpm": 150,
|
"read-wpm": 150,
|
||||||
"top-words": 64,
|
"top-words": 64,
|
||||||
"top-tags": 64,
|
"top-tags": 64,
|
||||||
|
"legal": "<b>Legal disclaimer</b>: The content of this blog post is my personal opinion, experience, and thoughts as an individual sharing her perspective on this topic. I am not a professional or expert in this area, and the information provided in this blog post is for general informational, educational, entertainment, and recreational purposes only. Accuracy is strived for, but no warranty is given in respect to the reliability or completeness of such content, express or implied. Your acceptance of any reliance on any part of such content from the blog is entirely at your own risk. Under no circumstances shall I, and any of my representatives be held liable for damages arising from access and use of the blog post or linked sites and sources. Furthermore, there might be some links from this blog post to other websites; I have no control over those and do not endorse their content. You are responsible for your actions and subsequent results in using this material. This disclaimer is provided as per the legal basis underlying <a href=\"https://ari.lt/legal\">https://ari.lt/legal</a> and should be considered in further reference to privacy, data security, and liability. Your use of this blog post acknowledges your acceptance of the conditions, and exempts me from any liability that comes from any possible inaccuracy, incompleteness, unreliability, inconsistencies, (un)availability, or any other errors in the information provided herein.",
|
||||||
"posts": {
|
"posts": {
|
||||||
"install-lineageos-181-xiaomi-redmi-go-tiare": {
|
"install-lineageos-181-xiaomi-redmi-go-tiare": {
|
||||||
"title": "How to install LineageOS 18.1 on Xiaomi Redmi GO (Tiare)",
|
"title": "How to install LineageOS 18.1 on Xiaomi Redmi GO (Tiare)",
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
--qw: 2px;
|
--qw: 2px;
|
||||||
--qb: #ede9d3;
|
--qb: #ede9d3;
|
||||||
--qf: #e6e0c8;
|
--qf: #e6e0c8;
|
||||||
|
--lf: #d3ceba;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
@ -37,3 +38,7 @@ blockquote:before {
|
||||||
top: 13px;
|
top: 13px;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#legal {
|
||||||
|
color: var(--lf);
|
||||||
|
}
|
||||||
|
|
|
@ -143,6 +143,7 @@ DEFAULT_CONFIG: dict[str, typing.Any] = {
|
||||||
"read-wpm": 150,
|
"read-wpm": 150,
|
||||||
"top-words": 64,
|
"top-words": 64,
|
||||||
"top-tags": 64,
|
"top-tags": 64,
|
||||||
|
"legal": '<b>Legal disclaimer</b>: The content of this blog post is my personal opinion, experience, and thoughts as an individual sharing her perspective on this topic. I am not a professional or expert in this area, and the information provided in this blog post is for general informational, educational, entertainment, and recreational purposes only. Accuracy is strived for, but no warranty is given in respect to the reliability or completeness of such content, express or implied. Your acceptance of any reliance on any part of such content from the blog is entirely at your own risk. Under no circumstances shall I, and any of my representatives be held liable for damages arising from access and use of the blog post or linked sites and sources. Furthermore, there might be some links from this blog post to other websites; I have no control over those and do not endorse their content. You are responsible for your actions and subsequent results in using this material. This disclaimer is provided as per the legal basis underlying <a href="https://ari.lt/legal">https://ari.lt/legal</a> and should be considered in further reference to privacy, data security, and liability. Your use of this blog post acknowledges your acceptance of the conditions, and exempts me from any liability that comes from any possible inaccuracy, incompleteness, unreliability, inconsistencies, (un)availability, or any other errors in the information provided herein.',
|
||||||
"posts": {},
|
"posts": {},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -255,7 +256,7 @@ POST_TEMPLATE: typing.Final[str] = (
|
||||||
<hr aria-hidden="true" role="seperator" />
|
<hr aria-hidden="true" role="seperator" />
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<main> <article id="main">{post_content}</article> </main>
|
<main> <article id="main"><p id=legal>{legal}</p> {post_content}</article> </main>
|
||||||
<footer><p>{author} <<a href="mailto:{email}">{email}</a>> + {license}</p></footer>
|
<footer><p>{author} <<a href="mailto:{email}">{email}</a>> + {license}</p></footer>
|
||||||
</body>
|
</body>
|
||||||
</html>"""
|
</html>"""
|
||||||
|
@ -350,6 +351,7 @@ STATS_TEMPLATE: typing.Final[str] = (
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<article id="main">
|
<article id="main">
|
||||||
|
|
||||||
<ul id=blist>
|
<ul id=blist>
|
||||||
<li>total count of blog posts : <code>{post_count}</code></li>
|
<li>total count of blog posts : <code>{post_count}</code></li>
|
||||||
<li>edited post count : <code>{edited_post_count}</code>, <code>{edited_post_count_p:.2f}%</code></li>
|
<li>edited post count : <code>{edited_post_count}</code>, <code>{edited_post_count_p:.2f}%</code></li>
|
||||||
|
@ -1024,6 +1026,7 @@ def build(config: dict[str, typing.Any]) -> int:
|
||||||
path=f"{config['posts-dir']}/{slug}/",
|
path=f"{config['posts-dir']}/{slug}/",
|
||||||
license=config["license"],
|
license=config["license"],
|
||||||
email=config["email"],
|
email=config["email"],
|
||||||
|
legal=config["legal"],
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue