westpointrealtors-theme 0.0.2.pre.alpha.pre.9 → 0.0.2.pre.alpha.pre.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/_includes/head.html +0 -1
- data/_layouts/home.html +17 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjkwNjM1ODMxZDAwZWJmYTg4ZjcxNGQ5MTk1MjM2YmZmYzNlMjMyZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjI2Yjg0MzNkNzI0YmY4NjBkZjVkODEzMTU1Mjk4NzljNDIwOTk1OA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzE0NDMwMzExZTMwYzdlOTk0MmI2YmM5ZWY0NjdlNTg0NDY2MjdjMmJjMGMx
|
10
|
+
MWJkYjg2NjI5OTU0NWFmNTA3Yzg1ZGM2ZDg0MWJjYWYzNTNjY2EyZDUzNThm
|
11
|
+
YTIxMjIxNjY4MGM1MTczMjRjNDkxMjRmZjA1MzY4ZTAyNGM1ZmI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZjJiMTYxNDVkNzQyZTA5NDMyMjAyMzE5YmEwODE4MDViNDk1OTg5N2UzMTkw
|
14
|
+
OTM0OTU3N2ZiZDBhYjJjYTE5Y2FiYjM3N2Y0MTJlM2U0NTg1MmM3MjI5OGU3
|
15
|
+
NDlhOTk1MzVlNmRhMDE4NDM2NTAwMmEyNzFjMmE5ZWJkNWIxM2Y=
|
data/_includes/head.html
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
<link rel="shortcut icon" href="/assets/images/icons/favicon.png" />
|
6
6
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
7
7
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
8
|
-
{% seo %}
|
9
8
|
{% include css.html %}
|
10
9
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
11
10
|
</head>
|
data/_layouts/home.html
CHANGED
@@ -5,6 +5,23 @@ layout: default
|
|
5
5
|
<div class="card-deck">
|
6
6
|
<div class="card">
|
7
7
|
<img class="card-img-top" src="..." alt="Card image cap">
|
8
|
+
{% assign houses_by_archive_status = site.houses | group_by: "archived" %}
|
9
|
+
{% for houses_archived_status in houses_by_archive_status %}
|
10
|
+
{% if houses_archived_status.name == false %}
|
11
|
+
{% assign houses_by_homepage_status = houses_archived_status.items | group_by: "homepage" %}
|
12
|
+
{% for houses_homepage_status in houses_by_homepage_status %}
|
13
|
+
{% if houses_homepage_status.name == true %}
|
14
|
+
{% for house in houses_homepage_status.items limit: site.homepage_house_limit }
|
15
|
+
<div class="card-block">
|
16
|
+
<h4 class="card-title">house.address</h4>
|
17
|
+
<p class="card-text">house.output</p>
|
18
|
+
<p class="card-text"><small class="text-muted">house.list_date</small></p>
|
19
|
+
</div>
|
20
|
+
{% endfor %}
|
21
|
+
{% endif %}
|
22
|
+
{% endfor %}
|
23
|
+
{% endif %}
|
24
|
+
{% endfor %}
|
8
25
|
</div>
|
9
26
|
</div>
|
10
27
|
</div>
|