Skip to content

Commit 0446413

Browse files
committed
Add term page layout
This commit introduces a layout for term pages, displaying posts associated with a taxonomy term. - Adds `layouts/_default/term.html` to display term pages. - Uses `taxonomy_posts.html` partial for listing posts. - Includes header and footer partials.
1 parent 119ee24 commit 0446413

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

layouts/_default/term.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{{ partial "header.html" . }}
2+
<div class="container wrap">
3+
{{ partial "taxonomy_posts.html" . }}
4+
</div>
5+
6+
{{ partial "footer.html" . }}

0 commit comments

Comments
 (0)