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

github.com/darshanbaral/kitab.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.html50
1 files changed, 24 insertions, 26 deletions
diff --git a/layouts/_default/section.html b/layouts/_default/section.html
index 6ec2a09..789dec4 100644
--- a/layouts/_default/section.html
+++ b/layouts/_default/section.html
@@ -1,28 +1,26 @@
{{ define "main" }}
-<main>
- <table class="table table-striped table-sm m-auto" style="max-width: 800px;">
- <thead>
- <tr>
- <th scope="col">
- <h3>
- {{ .Title | markdownify }}
- </h3>
- </th>
- </tr>
- </thead>
- <tbody>
- {{ range .Pages.ByWeight }}
- <tr>
- <td>
- <a href="{{ .Permalink }}">
- <h4>
- {{ .Title }}
- </h4>
- </a>
- </td>
- </tr>
- {{ end }}
- </tbody>
- </table>
-</main>
+<table class="table table-striped table-sm m-auto" style="max-width: 800px;">
+ <thead>
+ <tr>
+ <th scope="col">
+ <h3>
+ {{ .Title | markdownify }}
+ </h3>
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ {{ range .Pages.ByWeight }}
+ <tr>
+ <td>
+ <a href="{{ .Permalink }}">
+ <h4>
+ {{ .Title }}
+ </h4>
+ </a>
+ </td>
+ </tr>
+ {{ end }}
+ </tbody>
+</table>
{{ end }}