changes working
This commit is contained in:
@@ -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>
|
||||
@@ -0,0 +1,4 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "articles/hero.html" . }}
|
||||
{{ partial "articles/articles.html" . }}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,13 @@
|
||||
{{ define "main" }}
|
||||
|
||||
<section class="section narrow">
|
||||
|
||||
{{ partial "page/hero.html" . }}
|
||||
|
||||
<article id="articleContent" class="post-content">
|
||||
{{ .Content }}
|
||||
</article>
|
||||
|
||||
</section>
|
||||
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user