blob: d32d4542f191475436c219b57b6d4be8195e2eaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<!DOCTYPE html>
<html class="h-full" lang="ru">
<head>
<title>Anna Hvatit</title>
<link rel="icon" href="/assets/icons/favicon.svg" type="image/svg+xml">
<!-- OG -->
<meta property="og:title" content="TODO" />
<meta property="og:description" content="TODO" />
<meta property="og:image" content="TODO" />
<meta property="og:url" content="https://mnik01-blog.mlibren.com" />
<meta property="og:type" content="website" />
<!-- OG -->
<meta charset="UTF-8">
<!-- TODO: replace with static css -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="relative">
<div class="fixed top-0 translate-x-12 translate-y-10 z-40 right-0">
<span class="font-bold text-black rotate-45 w-[200px] text-center block bg-yellow-400">В разработке</span>
</div>
<!-- %include.header% -->
<main>
<div class="mx-auto flex flex-col-reverse py-12 md:grid gap-4 grid-cols-12 container max-sm:px-5">
<section class="col-span-9">
<ul class="space-y-10">
<li>
<article>
<header>
<h1 class="text-2xl first-letter:capitalize">что-то про геологию</h1>
<div class="flex flex-wrap gap-2 mt-2">
<time class="text-zinc-600 text-sm">UTC 01:56 12.09.25</time>
<a href="#" class="flex items-center justify-center bg-zinc-200 rounded-lg px-1.5 text-zinc-600 first-letter:capitalize hover:underline text-xs">геология</a>
</div>
</header>
<main class="space-y-2 mt-4">
<p>TEXT TODO</p>
</main>
<a class="mt-4 underline underline-offset-6 decoration-yellow-500 decoration-[0.07rem] decoration-wavy first-letter:capitalize block" href="#">продолжить чтение →</a>
</article>
</li>
</ul>
</section>
<aside class="col-span-3">
<form class="flex outline-offset-4 outline-yellow-600/50 has-focus:outline-2" action="/search" method="get" role="search">
<input
class="border focus:outline-0 grow text-sm pl-3 border-zinc-200 h-10"
type="search"
id="search"
placeholder="Поиск с DuckDuckGo"
name="q"
required
>
<button class="px-6 cursor-pointer first-letter:capitalize bg-zinc-200 text-sm" type="submit">поиск</button>
</form>
<nav class="max-md:hidden pt-6">
<span class=" capitalize">публикации</span>
<ul class="space-y-2 mt-2">
<li><a class="text-sm hover:underline first-letter:capitalize block text-zinc-600" href="#">что-то про геологию</a></li>
</ul>
</nav>
<nav class="pt-6">
<span class=" capitalize">категории</span>
<ul id="tags-aside" class="flex flex-wrap gap-2 mt-2">
<li><a href="#" class="flex items-center justify-center bg-zinc-200 rounded-lg px-1.5 text-zinc-600 first-letter:capitalize text-xs hover:underline w-fit">геология</a></li>
</ul>
</nav>
</aside>
</div>
</main>
<!-- %include.footer% -->
</body>
</html>
|