65 lines
3.4 KiB
HTML
65 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html data-color-mode="light" data-dark-theme="{{ blogBase['nightTheme'] }}" data-light-theme="{{ blogBase['dayTheme'] }}">
|
|
<head>
|
|
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link href="//cdn.staticfile.org/Primer/21.0.7/primer.css" rel="stylesheet" />
|
|
<link rel="icon" href="{{ blogBase['faviconUrl'] }}">
|
|
<script>
|
|
if(localStorage.getItem("meek_theme")==null){}
|
|
else if(localStorage.getItem("meek_theme")=="dark"){document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value="dark";}
|
|
else if(localStorage.getItem("meek_theme")=="light"){document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value="light";}
|
|
</script>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<style>
|
|
body{box-sizing: border-box;min-width: 200px;max-width: 900px;margin: 20px auto;padding: 45px;font-size: 16px;font-family: sans-serif;line-height: 1.25;}
|
|
.avatar {transition: 0.8s;}
|
|
.avatar:hover {transform: scale(1.15) rotate(360deg);}
|
|
#header{display:flex;padding-bottom:8px;border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted));margin-bottom: 16px;}
|
|
#footer {margin-top:64px; text-align: center;font-size: small;}
|
|
|
|
</style>
|
|
{% block style %}{% endblock %}
|
|
|
|
<body>
|
|
<div id="header">{% block header %}{% endblock %}</div>
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
<div id="footer">{% include 'footer.html' %}</div>
|
|
</body>
|
|
<script>
|
|
var IconList={{ IconList }};
|
|
var utterancesLoad=0;
|
|
if(localStorage.getItem("meek_theme")==null){localStorage.setItem("meek_theme","light");changeLight();}
|
|
else if(localStorage.getItem("meek_theme")=="dark"){changeDark();}
|
|
else if(localStorage.getItem("meek_theme")=="light"){changeLight();}
|
|
|
|
function changeDark(){
|
|
document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value="dark";
|
|
document.getElementById("themeSwitch").setAttribute("d",value=IconList["moon"]);
|
|
document.getElementById("themeSwitch").parentNode.style.color="#00f0ff";
|
|
if(utterancesLoad==1){utterancesTheme("dark-blue");}
|
|
}
|
|
function changeLight(){
|
|
document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value="light";
|
|
document.getElementById("themeSwitch").setAttribute("d",value=IconList["sun"]);
|
|
document.getElementById("themeSwitch").parentNode.style.color="#ff5000";
|
|
if(utterancesLoad==1){utterancesTheme("github-light");}
|
|
}
|
|
function modeSwitch(){
|
|
if(document.getElementsByTagName("html")[0].attributes[0].value=="light"){changeDark();localStorage.setItem("meek_theme","dark");}
|
|
else{changeLight();localStorage.setItem("meek_theme","light");}
|
|
}
|
|
function utterancesTheme(theme){
|
|
const message = {type: 'set-theme',theme: theme};
|
|
const iframe = document.getElementsByClassName('utterances-frame')[0];
|
|
iframe.contentWindow.postMessage(message, 'https://utteranc.es');
|
|
}
|
|
|
|
console.log("\n %c Gmeek {{ blogBase['GMEEK_VERSION'] }} %c https://github.com/Meekdai/Gmeek \n\n", "color: #fff; background-image: linear-gradient(90deg, rgb(47, 172, 178) 0%, rgb(45, 190, 96) 100%); padding:5px 1px;", "background-image: linear-gradient(90deg, rgb(45, 190, 96) 0%, rgb(255, 255, 255) 100%); padding:5px 0;");
|
|
</script>
|
|
{% block script %}{% endblock %}
|
|
</html>
|
|
|