Replace _ with - in file names
This commit is contained in:
9
layouts/partials/paige-head.html
Normal file
9
layouts/partials/paige-head.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<head>
|
||||
{{ partial "paige-meta.html" . }}
|
||||
<title>{{ partial "paige-titles.html" . }}</title>
|
||||
{{ partial "paige-link.html" . }}
|
||||
{{ partial "paige-style.html" . }}
|
||||
{{ if templates.Exists "partials/paige-head-last.html" }}
|
||||
{{ partial "paige-head-last.html" . }}
|
||||
{{ end }}
|
||||
</head>
|
@@ -1,5 +1,5 @@
|
||||
{{ if .Site.Menus.main }}
|
||||
<header>
|
||||
{{ partial "paige_menu.html" . }}
|
||||
{{ partial "paige-menu.html" . }}
|
||||
</header>
|
||||
{{ end }}
|
@@ -12,7 +12,7 @@
|
||||
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/katex@0.16.3/dist/katex.min.css" integrity="sha384-Juol1FqnotbkyZUT5Z7gUPjQ9gzlwCENvUZTpQBAPxtusdwFLRy382PSDx5UUJ4/" rel="stylesheet">
|
||||
{{ end }}
|
||||
{{ if .AlternativeOutputFormats }}
|
||||
{{ $title := partial "paige_titles.html" . }}
|
||||
{{ $title := partial "paige-titles.html" . }}
|
||||
{{ range .AlternativeOutputFormats }}
|
||||
<link href="{{ .Permalink }}" rel="{{ .Rel }}" title="{{ $title }}" type="{{ .MediaType.Type }}">
|
||||
{{ end }}
|
4
layouts/partials/paige-main.html
Normal file
4
layouts/partials/paige-main.html
Normal file
@@ -0,0 +1,4 @@
|
||||
{{ partial "paige-title.html" . }}
|
||||
{{ partial "paige-description.html" . }}
|
||||
{{ partial "paige-date.html" . }}
|
||||
{{ partial "paige-content.html" . }}
|
@@ -15,7 +15,7 @@
|
||||
{{ end }}
|
||||
{{ if or $p.HasPrev $p.HasNext }}
|
||||
<div class="d-flex justify-content-center pt-3">
|
||||
{{ partial "paige_pagination.html" . }}
|
||||
{{ partial "paige-pagination.html" . }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</section>
|
@@ -1,9 +0,0 @@
|
||||
<head>
|
||||
{{ partial "paige_meta.html" . }}
|
||||
<title>{{ partial "paige_titles.html" . }}</title>
|
||||
{{ partial "paige_link.html" . }}
|
||||
{{ partial "paige_style.html" . }}
|
||||
{{ if templates.Exists "partials/paige_head_last.html" }}
|
||||
{{ partial "paige_head_last.html" . }}
|
||||
{{ end }}
|
||||
</head>
|
@@ -1,4 +0,0 @@
|
||||
{{ partial "paige_title.html" . }}
|
||||
{{ partial "paige_description.html" . }}
|
||||
{{ partial "paige_date.html" . }}
|
||||
{{ partial "paige_content.html" . }}
|
Reference in New Issue
Block a user