23 lines
474 B
PHP
23 lines
474 B
PHP
<?php
|
|
|
|
get_header();
|
|
|
|
echo site()->render("locations", [
|
|
"top_image" => get_field("locations_top_image", "options"),
|
|
"headline" => get_field("locations_headline", "options"),
|
|
"intro" => get_field("locations_intro_text", "options"),
|
|
"locations" => site()->getDefaultPosts([
|
|
"title",
|
|
"latitude",
|
|
"longitude",
|
|
"address_1",
|
|
"city",
|
|
"state",
|
|
"zip",
|
|
"phone",
|
|
"url",
|
|
])
|
|
]);
|
|
|
|
get_footer();
|