Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/khata.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/indexContent.html')
-rw-r--r--layouts/partials/indexContent.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/layouts/partials/indexContent.html b/layouts/partials/indexContent.html
new file mode 100644
index 0000000..059e349
--- /dev/null
+++ b/layouts/partials/indexContent.html
@@ -0,0 +1,29 @@
+{{ range where .Site.Sections "Params.hidefrommenu" "!=" true }}
+<div class="p-3 bg-light shadow border rounded index-box">
+ <h2 class="pb-1">
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
+ </h2>
+
+ <div class="d-flex flex-column">
+ {{ range first 6 .Pages }}
+ <div class="d-flex flex-row mb-2">
+ <div class="mr-1 date-short">
+ {{- .Date.Format (default "2006-01-02" "1/2/06") }} -
+ </div>
+ <div>
+ <a
+ href="{{ .Permalink }}"
+ title="{{- if .Params.description -}}
+ {{- .Params.description -}}
+ {{- else -}}
+ Description not available
+ {{- end -}}"
+ >
+ {{- .Title -}}
+ </a>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+</div>
+{{ end }}