Changed colors
This commit is contained in:
parent
011cfb2c71
commit
78773c5091
@ -9,13 +9,14 @@
|
|||||||
<link href="atom_en.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (EN only)" >
|
<link href="atom_en.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (EN only)" >
|
||||||
<link href="atom_fr.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (en français)" >
|
<link href="atom_fr.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (en français)" >
|
||||||
<link rel="shortcut icon" href="img/favicon.png" >
|
<link rel="shortcut icon" href="img/favicon.png" >
|
||||||
|
<link rel="me" href="https://soc.webair.xyz/@theo">
|
||||||
<link rel="canonical" href="$HTMLLINK">
|
<link rel="canonical" href="$HTMLLINK">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--bg: #20283d;
|
--bg: #191724;
|
||||||
--bg-alt: #426e5d;
|
--bg-alt: #403d52;
|
||||||
--fg: #fbf7f3;
|
--fg: #e0def4;
|
||||||
--fg-alt: #e5b083;
|
--fg-alt: #eb6f92;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
margin:40px auto;
|
margin:40px auto;
|
||||||
|
@ -36,11 +36,18 @@ def is_image(link):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def generate_rels(links):
|
||||||
|
result = ""
|
||||||
|
for link in links:
|
||||||
|
result += f'<link rel="me" href="https://soc.webair.xyz/@theo">\n'
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
def fill_globals(text):
|
def fill_globals(text):
|
||||||
return text.replace("$AUTHOR", global_name)\
|
return text.replace("$AUTHOR", global_name)\
|
||||||
.replace("$BASE_URL", base_url)\
|
.replace("$BASE_URL", base_url)\
|
||||||
.replace("$GLOBAL_TITLE", global_title)\
|
.replace("$GLOBAL_TITLE", global_title)\
|
||||||
.replace("$SUBTITLE", global_subtitle)
|
.replace("$SUBTITLE", global_subtitle)\
|
||||||
|
|
||||||
|
|
||||||
# Add the html version to the post dictionnary
|
# Add the html version to the post dictionnary
|
||||||
|
Loading…
Reference in New Issue
Block a user