🐼 first commit

This commit is contained in:
koirand 2018-09-23 20:11:35 +09:00
commit 8c7ec3df80
27 changed files with 2823 additions and 0 deletions

27
layouts/index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
<div class="profile">
<div class="profile-body">
<div class="avatar">
<img class="avatar-mask" src="{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}">
<img src="{{ .Site.BaseURL }}img/avatar-border.svg">
</div>
<h1 class="author">{{ .Site.Params.Author }}</h1>
<p>
{{ .Site.Params.discription }}
</p>
<nav>
<ul>
{{ range .Site.Params.Nav }}
<li><a href="{{ .url }}">{{ .name }}</a></li>
{{ end }}
</ul>
</nav>
</div>
</div>
{{- partial "footer.html" . -}}
</body>
</html>