1
+ ---
2
+ layout: archive
3
+ title: "Post Archive with Feature Rows"
4
+ permalink: /post-archive-feature-rows/
5
+ author_profile: true
6
+ feature_row:
7
+ - image_path: assets/images/unsplash-gallery-image-1-th.jpg
8
+ alt: "placeholder image 1"
9
+ title: "Placeholder 1"
10
+ excerpt: "This is some sample content that goes here with **Markdown** formatting."
11
+ - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
12
+ alt: "placeholder image 2"
13
+ title: "Placeholder 2"
14
+ excerpt: "This is some sample content that goes here with **Markdown** formatting."
15
+ url: "#test-link"
16
+ btn_label: "Read More"
17
+ btn_class: "btn--primary"
18
+ - image_path: /assets/images/unsplash-gallery-image-3-th.jpg
19
+ title: "Placeholder 3"
20
+ excerpt: "This is some sample content that goes here with **Markdown** formatting."
21
+ feature_row2:
22
+ - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
23
+ alt: "placeholder image 2"
24
+ title: "Placeholder Image Left Aligned"
25
+ excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`'
26
+ url: "#test-link"
27
+ btn_label: "Read More"
28
+ btn_class: "btn--primary"
29
+ feature_row3:
30
+ - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
31
+ alt: "placeholder image 2"
32
+ title: "Placeholder Image Right Aligned"
33
+ excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`'
34
+ url: "#test-link"
35
+ btn_label: "Read More"
36
+ btn_class: "btn--primary"
37
+ feature_row4:
38
+ - image_path: /assets/images/unsplash-gallery-image-2-th.jpg
39
+ alt: "placeholder image 2"
40
+ title: "Placeholder Image Center Aligned"
41
+ excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`'
42
+ url: "#test-link"
43
+ btn_label: "Read More"
44
+ btn_class: "btn--primary"
45
+ ---
46
+
47
+ {% for post in site.posts limit: 5 %}
48
+ {% include archive-single.html %}
49
+ {% endfor %}
50
+
51
+ {% include feature_row id="intro" type="center" %}
52
+
53
+ {% include feature_row %}
54
+
55
+ {% include feature_row id="feature_row2" type="left" %}
56
+
57
+ {% include feature_row id="feature_row3" type="right" %}
58
+
59
+ {% include feature_row id="feature_row4" type="center" %}
0 commit comments