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

github.com/schmanat/hugo-highlights-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/list.html')
-rw-r--r--layouts/partials/list.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/layouts/partials/list.html b/layouts/partials/list.html
new file mode 100644
index 0000000..7f1c87d
--- /dev/null
+++ b/layouts/partials/list.html
@@ -0,0 +1,25 @@
+{{ print "<!-- " .block.id " -->" | safeHTML }}
+<section id="{{.block.id}}" class="main special">
+ <div class="container">
+ {{ if eq .params.backgroundpersection true }}
+ <span class="image fit primary"><img src="images/{{ with .block.picture }}{{ . }}{{ end }}" alt="" /></span>
+ {{ end }}
+ <div class="content">
+ <header class="major">
+ <h2>{{ with .block.title}}{{ . | markdownify }}{{ end }}</h2>
+ </header>
+ <p>{{ with .block.description}}{{ . | markdownify }}{{ end }}</p>
+ <ul class="icons-grid">
+ {{ range .block.item }}
+ <li>
+ <span class="icon major {{ .icon }}"></span>
+ <h3>{{ .title }}</h3>
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+ {{ if .next }}
+ <a href="#{{.next.id}}" class="goto-next scrolly">{{ with .block.buttontext }}{{ . | markdownify }}{{ end }}</a>
+ {{ end }}
+ </div>
+</section>