Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@
- [Piotr Orzechowski](https://orzechowski.tech)
- [Glenn Feunteun](https://github.com/gfeun)
- [Santiago González](https://github.com/netrules)
- [Codruț Constantin Gușoi](https://www.sdwolfz.pro)
5 changes: 5 additions & 0 deletions exampleSite/content/snippets/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "Snippets"
---

This content is in `content/snippets/_index.md`
9 changes: 9 additions & 0 deletions exampleSite/content/snippets/first/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "First snippet"
---

This content is in `snippets/first/index.md`

```sh
pwd
```
9 changes: 9 additions & 0 deletions exampleSite/content/snippets/second/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "Second snippet"
---

This content is in `snippets/second/index.md`

```sh
ls -la
```
1 change: 1 addition & 0 deletions layouts/partials/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ <h1 class="title">

{{- .Title -}}
</h1>
{{ .Content }}
<ul>
{{ range .Paginator.Pages }}
<li>
Expand Down