Initial commit

This commit is contained in:
Avijit 🚀
2021-05-22 10:47:28 +02:00
commit a4d7d1215b
35 changed files with 1578 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
{{ partial "header.html" . }}
<body>
<div class="container wrapper tags">
{{ partial "head.html" . }}
<h1 class="page-title">{{ .Title }}</h1>
{{ with (.Site.GetPage .Title) }}
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
{{ partial "footer.html" . }}
</body>
</html>