Replace .Site.GetPage with one parameter calls

This commit is contained in:
Hanzei 2018-07-23 06:00:30 +02:00
parent ae99b799c8
commit 5121f1a833
No known key found for this signature in database
GPG key ID: 69A2DEFD98937BA0
5 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
{{ define "title" }}
{{ with .Site.GetPage "section" "/blog" }}
{{ with .Site.GetPage "/blog" }}
<h1 class="bold-title is-1">{{ .Title }}</h1>
{{ end }}
{{ end }}

View file

@ -9,7 +9,7 @@
</head>
<body>
<div id="top">
{{ with .Site.GetPage "page" "/home" }}
{{ with .Site.GetPage "/home" }}
<div class="hero is-{{ .Site.Params.home.introHeight | default "large" }}">
<!-- Super sweet Hero body title -->
<div class="hero-body">
@ -38,7 +38,7 @@
<!-- Tell them all about it! -->
{{ partial "nav.html" . }}
{{ with .Site.GetPage "page" "/home" }}
{{ with .Site.GetPage "/home" }}
{{ $home := . }}
{{ range sort (.Resources.ByType "page") "Params.weight" }}
{{ if ne .Name "contact.md" }}

View file

@ -1,4 +1,4 @@
{{ with .Site.GetPage "section" "/blog" }}
{{ with .Site.GetPage "/blog" }}
<div class="section" id="{{ .Title | urlize }}">
<!-- Begin Blog container -->
<div class="container">

View file

@ -1,4 +1,4 @@
{{ with .Site.GetPage "section" "/projects" }}
{{ with .Site.GetPage "/projects" }}
<div class="section" id="{{ .Title | urlize }}">
<!-- Begin Projects container -->
<div class="container">

View file

@ -40,7 +40,7 @@
<a class="navbar-item" href="{{ "/" | absLangURL }}">{{ i18n "nav_main" . }}</a>
{{ end }}
{{ with .Site.GetPage "page" "/home" }}
{{ with .Site.GetPage "/home" }}
{{ range sort (.Resources.ByType "page") "Params.weight" }}
{{ if ne .Name "contact.md" }}
<a class="navbar-item" href="{{ if $isHome }}#{{ .File.TranslationBaseName }}{{ else }}{{ printf "/#%s" .File.TranslationBaseName | absLangURL }}{{ end }}">{{ .Title }}</a>
@ -50,7 +50,7 @@
{{ $pageIsInProjects := eq .Page.Section "projects"}}
{{ if not (and $pageIsInProjects (eq .Page.Kind "section")) }}
{{ with .Site.GetPage "section" "/projects" }}
{{ with .Site.GetPage "/projects" }}
{{ $totalProjects := (len .Pages) }}
{{ $numberOfProjectsToShow := .Site.Params.home.numberOfProjectsToShow | default $totalProjects }}
{{ if $isHome }}
@ -71,7 +71,7 @@
{{ $pageIsInBlog := eq .Page.Section "blog"}}
{{ if not (and $pageIsInBlog (eq .Page.Kind "section")) }}
{{ with .Site.GetPage "section" "/blog" }}
{{ with .Site.GetPage "/blog" }}
{{ if $isHome }}
<a class="navbar-item" href="{{ printf "#%s" (.Title | urlize) }}">{{ .Title }}</a>
{{ else }}
@ -86,7 +86,7 @@
{{ end }}
{{ end }}
{{ with .Site.GetPage "page" "/home" }}
{{ with .Site.GetPage "/home" }}
{{ with .Resources.GetMatch "contact.md" }}
<a class="navbar-item" href="{{ if $isHome }}#{{ .File.TranslationBaseName }}{{ else }}{{ printf "/#%s" .File.TranslationBaseName | absLangURL }}{{ end }}">{{ .Title }}</a>
{{ end }}