| exampleSite/content/docs/clarity/blogging.md | ●●●●● patch | view | raw | blame | history | |
| exampleSite/content/docs/clarity/syntax-highlighting.md | ●●●●● patch | view | raw | blame | history | |
| exampleSite/content/docs/clarity/theme-overrides.md | ●●●●● patch | view | raw | blame | history | |
| exampleSite/content/docs/compose/customize.md | ●●●●● patch | view | raw | blame | history | |
| exampleSite/go.mod | ●●●●● patch | view | raw | blame | history | |
| exampleSite/go.sum | ●●●●● patch | view | raw | blame | history | |
| layouts/partials/pager.html | ●●●●● patch | view | raw | blame | history |
exampleSite/content/docs/clarity/blogging.md
@@ -1,5 +1,6 @@ +++ title="Blogging" weight=16 +++ ### Blog directory exampleSite/content/docs/clarity/syntax-highlighting.md
@@ -1,5 +1,6 @@ +++ title = "Syntax Highlighting" weight=17 +++ ### Code exampleSite/content/docs/clarity/theme-overrides.md
@@ -1,5 +1,6 @@ +++ title = "Theme Overrides" weight=18 +++ ### Custom CSS and JS exampleSite/content/docs/compose/customize.md
@@ -1,7 +1,7 @@ +++ description = "basic configuration" title = "Customize layouts & components" weight = 10 +++ ### Shortcodes modifiers exampleSite/go.mod
@@ -2,4 +2,4 @@ go 1.15 require github.com/onweru/compose v0.0.0-20220201002401-8fc05ebec231 // indirect require github.com/onweru/compose v0.0.0-20220201002706-19dcf4f70f4a // indirect exampleSite/go.sum
@@ -200,3 +200,5 @@ github.com/onweru/compose v0.0.0-20220131233504-ff693a0f9e9d/go.mod h1:tf1kQIBUcwJ/3mRFU5eiMrMvsDScVTK2IEFsZE3hZOc= github.com/onweru/compose v0.0.0-20220201002401-8fc05ebec231 h1:wNtaIQ7jJPCOi/KU4CvD89R8dhoXfga2rpJaZ90a7Kk= github.com/onweru/compose v0.0.0-20220201002401-8fc05ebec231/go.mod h1:tf1kQIBUcwJ/3mRFU5eiMrMvsDScVTK2IEFsZE3hZOc= github.com/onweru/compose v0.0.0-20220201002706-19dcf4f70f4a h1:G4nU+9JMPiVjuCUONovpvWYeFYd2usmxU6gjMbcJJMc= github.com/onweru/compose v0.0.0-20220201002706-19dcf4f70f4a/go.mod h1:tf1kQIBUcwJ/3mRFU5eiMrMvsDScVTK2IEFsZE3hZOc= layouts/partials/pager.html
@@ -1,7 +1,7 @@ <div class="pager{{ if .Next }}{{ else }} pager_lean{{ end }}"> {{- $searchURL := "/search/" }} {{ with .NextInSection }} {{ if ne .RelPermalink $searchURL }} {{ if and (ne .RelPermalink $searchURL) (.InSection .) }} <div class="pager_item prev"> <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="prev"> <span class="pager_label">{{ .Title }}</span> @@ -11,7 +11,7 @@ {{ end }} {{ with .PrevInSection }} {{ if ne .RelPermalink $searchURL }} {{ if and (ne .RelPermalink $searchURL) (.InSection .) }} <div class="pager_item next"> <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="next"> <span class="pager_label">{{ .Title }}</span>