This commit is contained in:
2022-08-28 23:54:19 +03:00
parent d769c9f0f0
commit b3cf5cb1b7
15 changed files with 299 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
<footer class="shadow-lg p-md-5 p-3 text-center border-top">
<div class="container">
<p class="m-0">Made with 🤍</p>
</div>
</footer>

View File

@@ -0,0 +1,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title>
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
</head>

View File

@@ -0,0 +1,16 @@
<header class="bg-dark shadow-sm sticky-top py-3 mb-3">
<div class="container">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col-4 fs-3">
🏴‍☠️
</div>
<div class="col-4 text-center fw-bold fs-3 text-white">
Сашка ☕
</div>
<div class="col-4 d-flex justify-content-end align-items-center">
<a class="btn btn-sm btn-outline-light" href="/posts/" target="_blank">Blog</a>&nbsp;
💀 🔵 🔴
</div>
</div>
</div>
</header>