More work done, more placeholder content. Can't be bothered to make all content multilingual. Code should be compliant though.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "pageHeader.html" . }}
|
||||
{{ $baseUrl := .Site.BaseURL }}
|
||||
{{ $paginator := .Paginate (.Pages.ByPublishDate.Reverse) }}
|
||||
{{ partial "paginator-buttons.html" $paginator }}
|
||||
{{ range $paginator.Pages }}
|
||||
<div class="box">
|
||||
<div class="pageHeaderContainer">
|
||||
{{ partial "blogPageHeader.html" . }}
|
||||
</div>
|
||||
<div class="content"><p> {{ .Summary }} <a href="{{ .Permalink }}">{{ T "readmore" }}</a> </p></div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ partial "paginator-buttons.html" $paginator }}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,9 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "blogPageHeader.html" . }}
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{ if ne .Params.projects nil }}
|
||||
<h3 class="title">{{ T "part_of_project" (len .Params.projects) }}: {{ range .Params.projects }}{{ with $.Site.GetPage (printf "projects/%s" .) }}<a class="separateWithCommas" href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}{{ end }}</h3>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user