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

github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/section.html')
-rw-r--r--layouts/_default/section.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/layouts/_default/section.html b/layouts/_default/section.html
deleted file mode 100644
index 3d1de63..0000000
--- a/layouts/_default/section.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{{ define "main" }}
-<main>
- <div class="row row-eq-height">
- {{ $sectionName := .Title | lower }}
- {{ range $key, $taxonomy := .Site.Taxonomies.categories.ByCount }}
- <div class="col-md-6 mt-3">
- <h2>
- <a href="/categories/{{ .Name }}/">
- {{ .Name }}
- </a>
- </h2>
- <div class="border rounded p-2">
- {{ range where $taxonomy.Pages.ByDate "Type" $sectionName }}
- <h4 class="ml-2">
- <a href="{{ .Permalink }}">
- {{ .Title }}
- </a>
- </h4>
- <p class="ml-4">{{ .Description }}</p>
- {{ end }}
- </div>
- </div>
- {{ end }}
- </div>
-</main>
-{{ end }}