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

github.com/jaden/twentyfourteen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..abd9686
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,21 @@
+{{ partial "header.html" . }}
+
+<div id="main-content" class="main-content">
+
+ <div id="primary" class="content-area">
+ <div id="content" class="site-content" role="main">
+
+ <header class="archive-header">
+ <h1 class="archive-title">{{ .Title }} Archive</h1>
+ </header>
+
+ {{ range where .Data.Pages "Section" "post" }}
+ {{ partial "content.html" . }}
+ {{ end }}
+
+ </div><!-- #content -->
+ </div><!-- #primary -->
+ {{ partial "sidebar.html" . }}
+</div><!-- #main-content -->
+
+{{ partial "footer.html" . }} \ No newline at end of file