Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nathancday/min_night.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate <nathancday@gmail.com>2018-02-17 22:54:15 +0300
committerNate <nathancday@gmail.com>2018-03-12 02:32:29 +0300
commit1ab002d4e9082b9a8cb05fd5c80d1349a9ce6c0c (patch)
tree48762575659fec4a9982732c82231f469167bf98
parentcfaecb333f4fbfe9fc5dd95815dbf345733d459f (diff)
tweaked list.html because of new 'Talks' section, added intro paragraph to index
-rw-r--r--layouts/_default/list.html6
-rw-r--r--layouts/index.html1
2 files changed, 3 insertions, 4 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index fd63720..8e24eea 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -4,10 +4,10 @@
<h2>{{ .Title }}</h2>
{{ range (.Paginator 10).Pages }}
- {{ if eq "Projects" $.Title }}
- {{ partial "list-item-project" . }}
+ {{ if eq "Posts" $.Title }}
+ {{partial "list-item-post.html" .}}
{{else}}
- {{partial "list-item-post.html" .}}
+ {{ partial "list-item-project" . }}
{{end}}
{{end}}
diff --git a/layouts/index.html b/layouts/index.html
index f927353..897090e 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -7,7 +7,6 @@
{{ with .Site.Params.profilePic }} <img class="profile" src="{{ . }}"> {{ end }}
<h1>{{ .Site.Title }}</h1>
-
<h2>{{ markdownify .Site.Params.Description }}</h2>