mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2025-10-09 10:11:14 +00:00
🐼 first commit
This commit is contained in:
commit
8c7ec3df80
27 changed files with 2823 additions and 0 deletions
27
layouts/index.html
Normal file
27
layouts/index.html
Normal 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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue