feat: pull home page title/subtitle from page content instead of hardcoding
This commit is contained in:
@@ -251,8 +251,10 @@ homeMap.on('load', function () {
|
||||
|
||||
<div class="home-feed-col">
|
||||
<div class="home-highlights-header">
|
||||
<h1 class="home-highlights-title">Into the East</h1>
|
||||
<p class="home-highlights-subtitle">A few moments from past journeys</p>
|
||||
<h1 class="home-highlights-title">{{ page.title }}</h1>
|
||||
{% if page.header.subtitle %}
|
||||
<p class="home-highlights-subtitle">{{ page.header.subtitle }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if highlights|length > 0 %}
|
||||
|
||||
Reference in New Issue
Block a user