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

github.com/themefisher/persian-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/about/list.html')
-rw-r--r--layouts/about/list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/about/list.html b/layouts/about/list.html
new file mode 100644
index 0000000..f0f4f3b
--- /dev/null
+++ b/layouts/about/list.html
@@ -0,0 +1,24 @@
+{{ define "main" }}
+
+<section class="section-sm pb-0 bg-light">
+ <div class="container">
+ <div class="row">
+ <div class="col-lg-8 mx-auto text-center">
+ <h1 class="text-center">{{.Title | markdownify}}</h1>
+ {{ with .Params.image }}
+ <img src="{{ . | absURL }}" alt="author" class="author-img">
+ {{ end }}
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="section">
+ <div class="container">
+ <div class="col-lg-8 mx-auto">
+ <div class="content">{{.Content}}</div>
+ </div>
+ </div>
+</section>
+
+{{ end }} \ No newline at end of file