website/template.html

48 lines
1.2 KiB
HTML
Raw Normal View History

2023-09-16 13:12:45 +03:00
<!DOCTYPE html>
2024-05-03 21:18:46 +03:00
<html>
2023-09-16 13:12:45 +03:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-05-03 21:18:46 +03:00
<meta property="og:site_name" content="Arbuz?"/>
{{%META%}}
2023-12-26 11:20:07 +03:00
<link rel="stylesheet" href="/custom.css">
2023-10-21 12:46:00 +03:00
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/all.css">
2024-03-10 10:47:57 +03:00
<link rel="icon" href="https://avatars.githubusercontent.com/u/61203964">
2023-12-27 12:50:43 +03:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
2024-05-03 21:18:46 +03:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
2023-12-27 12:50:43 +03:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/go.min.js"></script>
2024-05-03 21:18:46 +03:00
2024-07-23 22:01:00 +03:00
2023-12-27 12:50:43 +03:00
<script>hljs.highlightAll();</script>
2024-05-03 21:18:46 +03:00
<title>{{%TITLE%}}</title>
2023-09-16 13:12:45 +03:00
</head>
<body>
2024-07-23 11:12:00 +03:00
<nav>
<b>mrkrk</b>
<a href="/">Home</a>
<a href="/projects">Projects</a>
</nav>
<main class="mc">
{{%CONTENT%}}
</main>
2023-12-26 11:31:53 +03:00
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {
fontCache: 'global'
}
};
</script>
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
</script>
2023-09-16 13:12:45 +03:00
</body>
2023-12-26 11:13:03 +03:00
</html>