Изменение стилей

main
lambda 2 weeks ago
parent c91c5d9b5a
commit 7b4ddef553
No known key found for this signature in database
GPG Key ID: CF45A8EE158BBCB6

@ -6,7 +6,7 @@ title: Cyclocrust 51
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="static/css/bundle.css"> <link rel="stylesheet" href="/static/css/bundle.css">
<title>{{ title }}</title> <title>{{ title }}</title>
</head> </head>
<body> <body>

@ -0,0 +1,8 @@
---
layout: main
---
<div class="post">
<h1>{{ title }}</h1>
{{ content | safe }}
</div>

@ -1,3 +1,4 @@
{ {
"layout": "main" "layout": "post",
"tags": ["posts"]
} }

@ -1,6 +1,16 @@
body { body {
max-width: 1200px;
background: black; background: black;
color: white; color: white;
margin-inline: auto;
padding-inline: clamp(1rem, 5vw, 120px);
}
.head {
display: flex;
flex-wrap: wrap;
padding-top: 2rem;
gap: 20px;
} }
.head > .logo > svg { .head > .logo > svg {

Loading…
Cancel
Save