2013-01-11 18:49:59 -05:00
<%#
# @file
# Located at /
# Shows 3 most recently created topics, synapses, and maps.
2014-08-10 13:06:58 -04:00
#%>
2013-07-09 12:32:13 -04:00
2014-08-01 22:50:23 -04:00
<% if !authenticated? %>
2014-08-10 19:13:25 -04:00
<% content_for :title, "Home | Metamaps" %>
<div id="yield">
2014-11-26 12:58:20 -05:00
<div class="homeWrapper homeText">
2014-11-30 16:55:48 -08:00
<div class="homeTitle">Make Sense with Metamaps</div>
2014-08-10 19:13:25 -04:00
<div class="homeIntro">
2014-11-30 16:55:48 -08:00
<span class="green din-medium">METAMAPS.CC</span> is a free and open source platform that supports real-time sense-making, distributed collaboration, and the creative intelligence of individuals, organizations and communities. We are currently in an <span class="din-medium">invite-only beta.</span>
2014-08-10 19:13:25 -04:00
</div>
2014-11-26 12:58:20 -05:00
</div>
<div class="fullWidthWrapper withVideo">
<div class="homeWrapper">
2014-11-29 12:25:11 -05:00
<iframe class="homeVideo" src="//player.vimeo.com/video/113154814" width="560" height="315" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
2014-11-26 12:58:20 -05:00
<div class="callToAction">
<h3>Who finds it useful?</h3>
2014-11-30 16:55:48 -08:00
<p>Designers, inventors, artists, educators, strategists, consultants, facilitators, entrepreneurs, systems thinkers, changemakers, analysts, students, researchers... maybe you!</p>
2014-11-26 16:37:13 -05:00
<button type="button" class="button learnMoreCTA" onclick="Metamaps.GlobalUI.openLightbox('about');">LEARN MORE</button>
2014-11-30 16:55:48 -08:00
<a href="/explore/featured" class="exploreFeaturedCTA">EXPLORE FEATURED MAPS</a>
<a href="/request" class="requestInviteCTA" data-bypass="true">REQUEST INVITE</a>
2014-11-26 12:58:20 -05:00
</div>
<div class="clearfloat"></div>
</div>
</div>
<div class="fullWidthWrapper withPartners">
<div class="homeWrapper homePartners">
<% # our partners %>
2014-08-10 19:13:25 -04:00
</div>
</div>
2014-09-15 21:57:34 -04:00
</div><!-- end yield -->
2014-11-30 13:47:41 -05:00
<div class="github-fork-ribbon-wrapper right-bottom">
2014-09-15 21:57:34 -04:00
<div class="github-fork-ribbon">
2014-11-30 13:47:41 -05:00
<a href="https://github.com/metamaps/metamaps_gen002" target="_blank">Fork me on GitHub</a>
2014-09-15 21:57:34 -04:00
</div>
</div>
2014-08-10 19:13:25 -04:00
<script>
Metamaps.currentSection = "";
Metamaps.currentPage = "";
</script>
2014-08-01 22:50:23 -04:00
<% elsif authenticated? %>
2014-11-29 01:37:06 -05:00
<% content_for :title, "Explore Active Maps | Metamaps" %>
2014-08-10 19:13:25 -04:00
<script>
2014-11-29 01:37:06 -05:00
Metamaps.Maps.Active = <%= @maps.to_json.html_safe %>;
2014-08-10 13:06:58 -04:00
Metamaps.currentSection = "";
Metamaps.currentPage = "";
Metamaps.GlobalUI.Search.isOpen = true;
Metamaps.GlobalUI.Search.lock();
2014-08-10 19:13:25 -04:00
</script>
2014-08-10 13:06:58 -04:00
<% end %>