changes working

This commit is contained in:
akilan
2020-05-10 20:47:17 +04:00
parent 8c14650b51
commit 2fca76e753
154 changed files with 6271 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
<html>
{{ partial "head/head.html" . }}
<body class="line-numbers">
{{ $script := resources.Get "js/initColors.js" }}
<script src="{{ $script.RelPermalink }}"></script>
<div class="layout-styled">
{{ partial "header.html" . }}
{{ block "main" . }}
{{ end }}
{{ partial "footer.html" . }}
</div>
{{ $script := resources.Get "js/prism.js" }}
<script src="{{ $script.RelPermalink }}"></script>
</body>
</html>

View File

@@ -0,0 +1,4 @@
{{ define "main" }}
{{ partial "articles/hero.html" . }}
{{ partial "articles/articles.html" . }}
{{ end }}

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<section class="section narrow">
{{ partial "page/hero.html" . }}
<article id="articleContent" class="post-content">
{{ .Content }}
</article>
</section>
{{ end }}