update @ Sat Dec 14 23:14:29 EET 2024

Signed-off-by: Ari Archer <ari@ari.lt>
This commit is contained in:
Arija A. 2024-12-14 23:14:29 +02:00
parent 86de9926cd
commit b880ee9a5b
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2
3 changed files with 10 additions and 1 deletions

View file

@ -131,6 +131,7 @@
"read-wpm": 150,
"top-words": 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": {
"install-lineageos-181-xiaomi-redmi-go-tiare": {
"title": "How to install LineageOS 18.1 on Xiaomi Redmi GO (Tiare)",

View file

@ -2,6 +2,7 @@
--qw: 2px;
--qb: #ede9d3;
--qf: #e6e0c8;
--lf: #d3ceba;
}
pre {
@ -37,3 +38,7 @@ blockquote:before {
top: 13px;
left: 0;
}
#legal {
color: var(--lf);
}

View file

@ -143,6 +143,7 @@ DEFAULT_CONFIG: dict[str, typing.Any] = {
"read-wpm": 150,
"top-words": 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": {},
}
@ -255,7 +256,7 @@ POST_TEMPLATE: typing.Final[str] = (
<hr aria-hidden="true" role="seperator" />
</nav>
</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} &lt;<a href="mailto:{email}">{email}</a>&gt; + {license}</p></footer>
</body>
</html>"""
@ -350,6 +351,7 @@ STATS_TEMPLATE: typing.Final[str] = (
</header>
<main>
<article id="main">
<ul id=blist>
<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>
@ -1024,6 +1026,7 @@ def build(config: dict[str, typing.Any]) -> int:
path=f"{config['posts-dir']}/{slug}/",
license=config["license"],
email=config["email"],
legal=config["legal"],
),
)
)