add very basic layout
This commit is contained in:
parent
c13543ac28
commit
057b5630ae
3 changed files with 44 additions and 0 deletions
29
_layouts/default.html
Normal file
29
_layouts/default.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>{{ site.title }}</title>
|
||||||
|
<link rel="stylesheet" href="{{ 'assets/css/main.css' | relative_url }}">
|
||||||
|
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="{{ '/feed.xml' | relative_url }}">
|
||||||
|
|
||||||
|
{% seo %}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>{{ site.title }}</h1>
|
||||||
|
</header>
|
||||||
|
<footer>
|
||||||
|
<div><p>{{ site.description }}</p></div>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Email: <a href="mailto:owo@fef.moe">owo@fef.moe</a>
|
||||||
|
<br>
|
||||||
|
Fediverse:
|
||||||
|
<a rel="me" href="https://{{ site.author.fedi.host }}/@{{ site.author.fedi.user }}">
|
||||||
|
@{{ site.author.fedi.user }}@{{ site.author.fedi.host }}
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
11
_sass/style.scss
Normal file
11
_sass/style.scss
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
$color-primary: #ed02a7;
|
||||||
|
$color-primary-dark: #a10a73;
|
||||||
|
$color-secondary: #edcd1a;
|
||||||
|
$color-secondary-dark: #a18802;
|
||||||
|
$color-accent: #32eaed;
|
||||||
|
$color-bg: #1f0016;
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: $color-bg;
|
||||||
|
color: rgba(255, 255, 255, 0.8);
|
||||||
|
}
|
4
assets/css/main.scss
Normal file
4
assets/css/main.scss
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
---
|
||||||
|
|
||||||
|
@import "style";
|
Loading…
Reference in a new issue