page: index

This commit is contained in:
He4eT 2020-11-01 04:09:25 +05:00
commit 3028090d83
2 changed files with 40 additions and 3 deletions

24
src/assets/css/index.css Normal file
View file

@ -0,0 +1,24 @@
ul {
list-style: none;
margin: 0;
}
li {
font-size: 2rem;
margin-left: 6%;
}
li::before {
content: '/ ';
white-space: pre;
}
li:first-child {
font-size: 1.5rem;
margin-left: 0;
margin-bottom: 10%;
}
li:first-child::before {
content: '';
}

View file

@ -1,5 +1,18 @@
---
description: 'My own private fanzine'
css:
- index
---
<main>
<a href="/post/">
posts
</a>
<nav>
<ul>
<li><a href="/"><%= site.title %></a></li>
<li><a href="/post/">posts</a></li>
<li><a href="/projects/">projects</a></li>
<li><a href="/inventory/">inventory</a></li>
<li><a href="/about/">about</a></li>
</ul>
</nav>
</main>