15 lines
399 B
Text
15 lines
399 B
Text
{ #
|
|
# @file
|
|
# Shows a list of featured maps
|
|
# GET /explore/featured(.:format)
|
|
# }
|
|
|
|
<script>
|
|
{ content_for :title, "Explore Featured Maps | Metamaps" }
|
|
{ content_for :mobile_title, "Featured Maps" }
|
|
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.currentPage = "featured";
|
|
Metamaps.ServerData.Featured = { @maps.to_json.html_safe };
|
|
Metamaps.GlobalUI.Search.focus();
|
|
</script>
|