This website works better with JavaScript.
Home
Explore
Help
Sign In
noah
/
personal-site
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fix some pages using the wrong layout
main
Noah Hall
2 years ago
parent
2bbd8b2e09
commit
ea36edb8d9
4 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
templates/archive.njk
+1
-1
templates/page-list.njk
+1
-1
templates/tags-list.njk
+1
-1
templates/tags.njk
+ 1
- 1
templates/archive.njk
View File
@ -1,5 +1,5 @@
---
layout: layouts/
home
.njk
layout: layouts/
layout
.njk
permalink: /posts/
eleventyNavigation:
key: Posts
+ 1
- 1
templates/page-list.njk
View File
@ -3,7 +3,7 @@ pagination:
data: collections.all
size: 20
alias: entries
layout: layouts/
home
.njk
layout: layouts/
layout
.njk
permalink: /page-list/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}
---
<table>
+ 1
- 1
templates/tags-list.njk
View File
@ -1,6 +1,6 @@
---
permalink: /tags/
layout: layouts/
home
.njk
layout: layouts/
layout
.njk
---
<h1>Tags</h1>
+ 1
- 1
templates/tags.njk
View File
@ -10,7 +10,7 @@ pagination:
- posts
- tagList
addAllPagesToCollections: true
layout: layouts/
home
.njk
layout: layouts/
layout
.njk
renderData:
title: Tagged “{{ tag }}”
permalink: /tags/{{ tag }}/
Write
Preview
Loading…
Cancel
Save